Date: 05/09/03
- Next message: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Previous message: Muhammad Rofiq: "[PHP-I18N] Problem with specific kanji"
- In reply to: Muhammad Rofiq: "[PHP-I18N] Problem with specific kanji"
- Next in thread: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Reply: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Muhammad Rofiq" <rofiq <email protected>> wrote:
> $result = mb_convert_encoding($value, "EUC-JP", "SJIS-WIN");
>
> and when I revert back to SJIS-WIN using
>
> $original = mb_convert_encoding($result, "EUC-JP", "SJIS-WIN");
Should this be
$original = mb_convert_encoding($result, "SJIS-WIN", "EUC-JP");
since it's reverse conversion?
Moriyoshi
-- PHP Internationalization Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Previous message: Muhammad Rofiq: "[PHP-I18N] Problem with specific kanji"
- In reply to: Muhammad Rofiq: "[PHP-I18N] Problem with specific kanji"
- Next in thread: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Reply: Muhammad Rofiq: "Re: [PHP-I18N] Problem with specific kanji"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

