我正在通过此脚本加载文件:
$hFile = fopen($sFile, "r");
$sContent = "";
while(!feof($hFile)) {
$sContent .= fread($hFile, 4096);
}
fclose($hFile);
它可以正常工作,但我尝试加载一个名为test.txt
的文件
其中包含以下字符串:<>863b?)(/&(§&/))!)!=WLKM! K!*ÜQWW!W3³³w2_:LPE
变量$sContent
现在不包含任何内容。
答案 0 :(得分:4)
$html = mb_convert_encoding($html, "UTF-8");
首先写入文件之前执行此操作。