duanliao2310 2014-12-10 02: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-10 04: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.

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

报告相同问题?

悬赏问题

  • ¥15 C# datagridview 栏位进度
  • ¥15 vue3页面el-table页面数据过多
  • ¥100 vue3中融入gRPC-web
  • ¥15 kali环境运行volatility分析android内存文件,缺profile
  • ¥15 写uniapp时遇到的问题
  • ¥15 vs 2008 安装遇到问题
  • ¥15 matlab有限元法求解梁带有若干弹簧质量系统的固有频率
  • ¥15 找一个网络防御专家,外包的
  • ¥100 能不能让两张不同的图片md5值一样,(有尝)
  • ¥15 informer代码训练自己的数据集,改参数怎么改