将 xml 输入形式化为 simpleXML

发布于 2024-12-08 19:44:39 字数 387 浏览 2 评论 0原文

我编写了一个简单的函数来创建带有如下数据的 xml 元素:

$item->addChild('title', '<![CDATA[<font color="#9353ce">All Content Is Dynamically Loaded</font>]]>');

但是数据不会像我想要的那样输出,但它包含一些 html 实体:

&lt;![CDATA[&lt;font color="#FFFFFF"&gt;

我已经检查了函数 html_entity_decode 但它似乎只转换双引号和单引号:)

感谢您阅读本文,我希望有人可以帮助我。

I write a simple function to create xml element with data like :

$item->addChild('title', '<![CDATA[<font color="#9353ce">All Content Is Dynamically Loaded</font>]]>');

But the data won't output like I want but it contains some html entities :

<![CDATA[<font color="#FFFFFF">

I've checked the function html_entity_decode but it seems to convert double quotes and single quotes only :)

Thanks for reading this and I hope someone can help me .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

顾忌 2024-12-15 19:44:39

您需要使用 htmlspecialchars-decode() 来取回它们到您正在寻找的格式。

You need to use htmlspecialchars-decode() to get them back to the format you are looking for.

想念有你 2024-12-15 19:44:39

在 XML 中,

<title>
  <![CDATA[<font color="#9353ce">All Content Is Dynamically Loaded</font>]]>
</title>

在语义上与以下内容相同

<title>
  <font color="#9353ce">All Content Is Dynamically Loaded</font>
</title>

因此也许以下内容可以具有所需的输出(上面的第二个版本)?

$item->addChild(
  'title',
  '<font color="#9353ce">All Content Is Dynamically Loaded</font>'
);

(除非您有其他原因确实需要序列化为 CDATA 部分)

In XML,

<title>
  <![CDATA[<font color="#9353ce">All Content Is Dynamically Loaded</font>]]>
</title>

is semantically the same as

<title>
  <font color="#9353ce">All Content Is Dynamically Loaded</font>
</title>

So perhaps the following could have the desired output (the second version above)?

$item->addChild(
  'title',
  '<font color="#9353ce">All Content Is Dynamically Loaded</font>'
);

(unless you have other reasons why you really need to serialize as a CDATA section)

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