一聚教程网:一个值得你收藏的教程网站

热门教程

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

时间:2022-06-24 23:31:00 编辑:袖梨 来源:一聚教程网

htmlentities函数作用在汉字变量中的时候会出现乱码

 代码如下 复制代码
$resultsText = str_replace("[QUERY]", htmlentities($query), $resultsText);

正确的做法是改变htmlentities的默认参数

htmlentities($query,ENT_COMPAT,'UTF-8')

 代码如下 复制代码

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

热门栏目