在 php 中,使用 htmlspecialchars() 可以轻松地将英文引号转换成 html 实体,但有时它无法将中文引号也转换为实体。这可能会导致在输出 html 时出现问题。
解决方法是使用 mb_encode_numericentity 函数,它可以将其他字符(包括中文引号)转换为数字表示。然后,再使用 htmlspecialchars() 将数字表示转为 html 实体。
以下是如何将中文引号转为 html 实体的示例代码:
<?php $str = '你好“:'; $encoded = mb_encode_numericentity($str, array(0x0, 0xffff, 0, 0xffff), 'utf-8'); echo htmlspecialchars($encoded); ?>
输出结果:
立即学习“PHP免费学习笔记(深入)”;
你好“: