将汉字转换为html实体
有时候我们需要将汉字转换为 html 实体,例如在 html 中显示汉字或用于 url 编码。
问题:
如何将汉字“我是中国人”转换为 中 这种格式?
立即学习“PHP免费学习笔记(深入)”;
答案:
将汉字转换为 html 实体可以使用 mb_convert_encoding 函数:
echo mb_convert_encoding ('大家好哈', 'html-entities');
输出结果:
大人中付?
浏览器的解析结果会将 html 实体解析为正常的汉字。