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 转义 XML 文件中的特殊字符。我正在尝试读取 XML 文件,然后在退出时转义特殊字符。我正在尝试以 CDATA 格式制作 xml 文件。
提前致谢。
我觉得 htmlspecialchars() 函数可以帮助您转义特殊字符。
如果特殊字符是其他语言,即它不属于 utf-8 编码,则可以使用
utf8_str = iconv("ISO-8859-1", "UTF-8", my_str);