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 中添加子项,我的问题是如何在新行中编写该子项
$string = simplexml_load_file($config['string']); $string->addChild('name', $nick);
我想在新行中添加孩子,不管它是从新行开始还是以它结束
提前致谢
那是显示问题。如果您的文档看起来像这样,XML 本身就不会在意
<root> <nick>foo</nick> <nick>bar</nick> </root>
或者
<root><nick>foo</nick><nick>bar</nick></root>
两者都是完全有效的 XML,并且会解析成同一个 DOM 树。标签插页式广告中的空白是无关紧要的。