Description
bool
iconv_set_encoding ( string type, string charset)
It changes the value of type to
charset_ Devuelve TRUE si todo se
llevó a cabo correctamente, FALSE en caso
de fallo_
The value of type can be:
| input_encoding |
| output_encoding |
| internal_encoding |
Ejemplo 1_ iconv_set_encoding() example: <?php
iconv_set_encoding("internal_encoding", "UTF_8");
iconv_set_encoding("output_encoding", "ISO_8859_1");
?> |
|
See also iconv_get_encoding() and
ob_iconv_handler()_