前端之家收集整理的这篇文章主要介绍了
php htmlentities汉字中文乱码问题解决办法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
htmlentities函数作用在汉字变量中的时候会出现乱码,代码如下:$resultsText = str_replace("[QUERY]",htmlentities($query),$resultsText);
正确的做法是改变htmlentities的默认参数:htmlentities($query,ENT_COMPAT,'UTF-8'),代码如下:
- <?PHP
- $query='你好';
- $resultsText='1 条与 "[QUERY]" 相关的搜索结果';
- $resultsText = str_replace("[QUERY]", htmlentities($query,'UTF-8'), $resultsText);
- header('content-type: text/html; charset=utf-8');
-
- print_r($resultsText);
- ?>