Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要(®¢)使用 PHP 将特殊字符转换为相应的 HTML 实体编号。有没有类似htmlentities()实现这个功能的功能?我们需要在xsl:fo文档中填充特殊符号。最好的方法是将特殊字符存储为实体编号。
(®¢)
htmlentities()
xsl:fo
看看mb_encode_numericentity。
mb_encode_numericentity ($string, array (0x0, 0xffff, 0, 0xffff), 'UTF-8')
这会将整个字符串转换为数字实体。您可以通过将第二个参数的成员修改为 来更改将要转换的字符范围mb_encode_numericentity。
mb_encode_numericentity