Created
May 30, 2014 11:48
-
-
Save aidvu/82f5e3a18b199a794b48 to your computer and use it in GitHub Desktop.
iconv/mb_convert_encoding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$text = '₩'; | |
$fromEncoding = 'UTF-8'; | |
$toEncoding = 'EUC-KR'; | |
echo iconv($toEncoding, $fromEncoding, iconv($fromEncoding, $toEncoding, $text)); | |
echo "\n"; | |
echo mb_convert_encoding(mb_convert_encoding($text, $toEncoding, $fromEncoding), $fromEncoding, $toEncoding); | |
echo "\n"; | |
echo $text; | |
echo "\n"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment