asXML 破坏xml 文件吗?

发布于 2024-12-21 11:25:16 字数 1047 浏览 0 评论 0原文

你好,我有一个关于 php 中 asXML 函数的问题。假设我有一个名为 xml_file 的 xml 文件并包含以下内容。

<employees>
  <employee>
    <name>Mark</name>
    <age>27</age>
    <salary></salary>
  </employee>
  <employee>
    <name>Jack</name>
    <age>25</age>
    <salary>$4000</salary>
  </employee>
</employees>

我编写了这段代码来更改 xml 文件中的变量。

$xml = new SimpleXMLElement(file_get_contents($xml_file));
$xml->employee[1]->name = 'David';
$xml->asXML($xml_file) or die ("asXML failed.\n");

我的问题是,由于第一个工资标签是空的,asXML 函数会破坏这个标签,并且它的输出是这样的,

<employees>
  <employee>
    <name>Mark</name>
    <age>27</age>
    <salary/>
  </employee>
  <employee>
    <name>David</name>
    <age>25</age>
    <salary>$4000</salary>
  </employee>
</employees>

我怎样才能防止这种情况发生?感谢您提供任何适当的解决方案...

Hi I have a problem about asXML function in php. Assume I have a xml file which named xml_file and have below content.

<employees>
  <employee>
    <name>Mark</name>
    <age>27</age>
    <salary></salary>
  </employee>
  <employee>
    <name>Jack</name>
    <age>25</age>
    <salary>$4000</salary>
  </employee>
</employees>

I wrote this code for change a variable in my xml file.

$xml = new SimpleXMLElement(file_get_contents($xml_file));
$xml->employee[1]->name = 'David';
$xml->asXML($xml_file) or die ("asXML failed.\n");

And my problem is that since first salary tag is empty asXML function destroy this tag and it outputs like that

<employees>
  <employee>
    <name>Mark</name>
    <age>27</age>
    <salary/>
  </employee>
  <employee>
    <name>David</name>
    <age>25</age>
    <salary>$4000</salary>
  </employee>
</employees>

How can I prevent that? Thanks for any proper solutions...

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

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

发布评论

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

评论(1

雨巷深深 2024-12-28 11:25:16

在 XML 中:-

<salary></salary> = <salary/>  <-- both are empty tag

In XML :-

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