duanliao2310 2014-12-09 18:47 采纳率: 100%
浏览 40
已采纳

PHP从不同的编码页面中打开Unicode编码文件

I have a text file stored in a server which is encoded in UTF-8 and im trying to load that file from a webpage in another server which is encoded in shift_JIS. I cant get it to work though. This is my original code:

function whatever() {
 $open_file = fopen("http://www.myass.com/whatever.txt", 'r');
 $whatevers = explode("*", fgets($open_file));
 $whatevers_num =count($whatevers)-2;
 $i=1;
 while($i <= $whatevers_num) {
   $details = explode("|", $whatevers[$i++]);
   echo <<<EOF
   $details[1] - $details[2] - $details[3]
EOF;
 }
  fclose($open_file);
}

I tried by doing this:

function whatever() {
 $open_file = fopen(mb_convert_encoding("http://www.myass.com/whatever.txt", "shift_jis"), 'r');
 $whatevers = explode("*", fgets($open_file));
 $whatevers_num =count($whatevers)-2;
 $i=1;
 while($i <= $whatevers_num) {
   $details = explode("|", $whatevers[$i++]);
   echo <<<EOF
   $details[1] - $details[2] - $details[3]
EOF;
 }
  fclose($open_file);
}

and even this:

function whatever() {
 $open_file = fopen("http://www.myass.com/whatever.txt", 'r');
 $whatevers = explode("*", fgets($open_file));
 $whatevers_num =count($whatevers)-2;
 $i=1;
 while($i <= $whatevers_num) {
   $details = explode("|", $whatevers[$i++]);
   echo <<<EOF
   $details[1] - $details[2] - $details[3]
EOF;
 }
  fclose($open_file);
}

ob_start();
whatever();
$get_whatever = ob_get_contents();
ob_end_clean();

$encode = mb_convert_encoding("$get_whatever", "shift_jis");

echo $encode;

but nothing worked, i get only garbled characters. What can i do?

Thank you.

展开全部

  • 写回答

1条回答 默认 最新

  • dongmen5867 2014-12-09 20:04
    关注

    I would recommend loading the entire content of the file (using file_get_contents or CURL) into a string and converting it before doing any other type of processing. This ensures you have the full converted text at hand.

    $utf_string = file_get_contents('http://www.myass.com/whatever.txt');
    $sjis_string = mb_convert_encoding($utf_string, 'SJIS', 'UTF-8');
    echo($sjis_string);
    

    After this, you can start your explode and loop logic.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部