当前位置:Gxlcms > PHP教程 > utf-8-PHP乱码的顽症--部分乱码

utf-8-PHP乱码的顽症--部分乱码

时间:2021-07-01 10:21:17 帮助过:48人阅读

utf-8php乱码

先上代码

header("content-type:text/html;charset=utf-8");

$filep="text/ok.txt";
if(file_exists($filep))
{
$fop=fopen($filep,"r");
$k=0;
while(!feof($fop)&&$k {
$str=fread($fop,"200");
echo "

".str_ireplace("\r\n","
",$str)."

";
$k=$k+200;
}
}

else
{
echo "failed open file";
}
clearstatcache();
?>
输出是这样的,(我的ok.txt文本中内容是--本文--两个字的不断重复。)
上图。
图片说明

人气教程排行