首頁 > php教程 > php手册 > 主體

php htmlentities汉字中文乱码问题解决办法

WBOY
發布: 2016-05-25 16:51:53
原創
1761 人瀏覽過

htmlentities函数作用在汉字变量中的时候会出现乱码,代码如下:$resultsText = str_replace("[QUERY]", htmlentities($query), $resultsText);

正确的做法是改变htmlentities的默认参数:htmlentities($query,ENT_COMPAT,'UTF-8'),代码如下:

<?php  
$query=&#39;你好&#39;;  
$resultsText=&#39;1 条与 "[QUERY]" 相关的搜索结果&#39;;  
$resultsText = str_replace("[QUERY]", htmlentities($query,ENT_COMPAT,&#39;UTF-8&#39;), $resultsText);  
header(&#39;content-type: text/html; charset=utf-8&#39;);  

print_r($resultsText);
登入後複製

               
               

文章网址:

随意转载^^但请附上教程地址。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板