(PHP 4 >= 4.0.5, PHP 5, PHP 7)
Convert character encoding as output buffer handler
string ob_iconv_handler ( string $contents, int $status )
Converts the string encoded in internal_encoding
to output_encoding
.
internal_encoding
and output_encoding
should be defined in the php.ini file or in iconv_set_encoding().
Returns:
See ob_start() for information about this handler return values.
Examples:
ob_iconv_handler() example:
1 2 3 4 5 | <?php iconv_set_encoding( "internal_encoding" , "UTF-8" ); iconv_set_encoding( "output_encoding" , "ISO-8859-1" ); ob_start( "ob_iconv_handler" ); // start output buffering ?> |
See also:
output-control functions - control functions
Please login to continue.