PHP无法使用特殊字符读取文件

时间:2014-05-19 16:36:52

标签: php encoding fread

我正在通过此脚本加载文件:

$hFile = fopen($sFile, "r");
$sContent = "";

while(!feof($hFile)) {
    $sContent .= fread($hFile, 4096);
}

fclose($hFile);

它可以正常工作,但我尝试加载一个名为test.txt的文件 其中包含以下字符串:<>863b?)(/&(§&/))!)!=WLKM! K!*ÜQWW!W3³³w2_:LPE

变量$sContent现在不包含任何内容。

1 个答案:

答案 0 :(得分:4)

$html = mb_convert_encoding($html, "UTF-8");

首先写入文件之前执行此操作。