我怎样才能让PHP simplexml保存<作为其本身而不是 <

发布于 2024-09-13 19:19:20 字数 832 浏览 7 评论 0 原文

基本上我有一个脚本可以在不同的地方更新 xml 文档...但是,我需要将文本放在 CDATA 中...所以我尝试这样做:

                $PrintQuestion->content->multichoice->feedback->hint->Passage->Paragraph->addChild('TextFragment', '<![CDATA[' . $value[0] . ']]>');

不幸的是,当我将 XML 保存回文件时,<和>在 cdata 中出现它们各自的 <和 $gt;代码有办法避免这种情况吗?

注意:我们的解析器不知道如何读取 &lt;&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);

Basically I have a script that updates an xml document in various places... However, I need the text to be in CDATA... So I attempted this:

                $PrintQuestion->content->multichoice->feedback->hint->Passage->Paragraph->addChild('TextFragment', '<![CDATA[' . $value[0] . ']]>');

Unfortunately when I save the XML back to file, the < and > in cdata come up as their respective < and $gt; codes is there a way to avoid this?

Note: Our parser doesn't know how to read the < and > codes, so this is a serious issue

after doing a print_r of my simple_xml object, the < appears as itself in the source code!

It must be the domsave that is converting it into the entity code... any ideas how to disable this?

        //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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

呆头 2024-09-20 19:19:20

正如我在评论中所说,SimpleXML 对 DOM 节点的控制非常有限。以下是如何用 DOMText 节点替换 < href="http://www.php.net/manual/en/domdocument.createcdatasection.php" rel="nofollow noreferrer">DOMCDATASection 节点。

$dom = new DOMDocument;
$dom->loadXML('<root><a>foo</a></root>');
$a = $dom->documentElement->childNodes->item(0);
$a->replaceChild(
    $dom->createCDATASection('bar'),
    $a->childNodes->item(0)
);
echo $dom->saveXml($a); // <a><![CDATA[bar]]></a>

有关如何使用 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.

$dom = new DOMDocument;
$dom->loadXML('<root><a>foo</a></root>');
$a = $dom->documentElement->childNodes->item(0);
$a->replaceChild(
    $dom->createCDATASection('bar'),
    $a->childNodes->item(0)
);
echo $dom->saveXml($a); // <a><![CDATA[bar]]></a>

For a lengthy example on how to use DOM see my answer here and some more here

赠我空喜 2024-09-20 19:19:20

你不能使用 html_entity_decode 在将其发送到解析器之前函数?它将把 <> 转换回 <>

Can't you use html_entity_decode function before sending it to your parser? It will convert < and > back to < and >

最佳男配角 2024-09-20 19:19:20

解析器无法处理 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文