Multibyte String¶
mbstring
provides function to process multibyte strings functions. Moreover, mbstring
converts from and to various character encodings.
<?php
/* Convert EUC-JP to UTF-7 */
$str = mb_convert_encoding($str, "UTF-7", "EUC-JP");
?>
mbstring
provides function to process multibyte strings functions. Moreover, mbstring
converts from and to various character encodings.
<?php
/* Convert EUC-JP to UTF-7 */
$str = mb_convert_encoding($str, "UTF-7", "EUC-JP");
?>
The definitive reference with all things PHP, and their definitions.
Contents: