我怎样才能让PHP simplexml保存<作为其本身而不是 <
基本上我有一个脚本可以在不同的地方更新 xml 文档...但是,我需要将文本放在 CDATA 中...所以我尝试这样做:
$PrintQuestion->content->multichoice->feedback->hint->Passage->Paragraph->addChild('TextFragment', '<![CDATA[' . $value[0] . ']]>');
不幸的是,当我将 XML 保存回文件时,<和>在 cdata 中出现它们各自的 <和 $gt;代码有办法避免这种情况吗?
注意:我们的解析器不知道如何读取 <
和 >
代码,所以这是一个严重的问题
对 simple_xml 对象执行 print_r 后, <在源代码中就如其本身一样出现!
一定是 domsave 将其转换为实体代码...有什么想法如何禁用它吗?
//Convert SimpleXML element to DOM and save
$dom = new DOMDocument('1.0');
$dom->preserveWhiteSpace = false;
$dom->formatOutput = false;
$dom->loadXML($xml->asXML());
$dom->save($filename);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如我在评论中所说,SimpleXML 对 DOM 节点的控制非常有限。以下是如何用 DOMText 节点替换 < href="http://www.php.net/manual/en/domdocument.createcdatasection.php" rel="nofollow noreferrer">DOMCDATASection 节点。
有关如何使用 DOM 的详细示例请参阅我的答案和这里还有更多内容
Like I said in the comments, SimpleXML is very limited in the control it gives you over the DOM nodes. Here is an example on how to replace a DOMText node with a DOMCDATASection node.
For a lengthy example on how to use DOM see my answer here and some more here
你不能使用
html_entity_decode
在将其发送到解析器之前函数?它将把<
和>
转换回<
和>
Can't you use
html_entity_decode
function before sending it to your parser? It will convert<
and>
back to<
and>
解析器无法处理 CDATA 部分?在这种情况下,它不是 XML 解析器,因此您需要编写一个生成类似 XML 输出的工具,而不是 XML 工具。 (或者修复解析器,使其成为 XML 解析器)
The parser can't cope with CDATA sections? In that case it is not an XML parser, so you need to write a tool that generates an XML-like output instead of an XML tool. (Or fix the parser so it becomes an XML parser)