Description
string
iconv ( string in_charset, string out_charset, string str)
It converts the string str encoded in
in_charset to the string encoded in
out_charset_ It returns the converted
string or FALSE, if it fails_
Ejemplo 1_ iconv() example: <?php
echo iconv("ISO_8859_1","UTF_8","This is a test_");
?> |
|