<?xml version="1.0" encoding="ISO-8859-1"?>
<root>
<pages>
<page>
<title>Home</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Pictures</title>
<content>Lorem Ipsum</content>
</page>
<page>
<title>Information</title>
<content>Lorem Ipsum</content>
</page>
</pages>
<css>
<css-tag>
<title>background-color</title>
<value>#FFF</value>
</css-tag>
</css>
<layout>1</layout>
</root>
是我的 XML 文件吗
首先我想“ replace <Content> with $content where <Title> = $title
”并保存它
其次我需要“ delete page where <Title> = $title
”并保存它
第三,我需要一个更改页面布局的选项,有人知道如何做到这一点吗?我知道每个“页面”都是按照它们所在的顺序打印的,也许我应该有<page id="0"> <page id="1"> <page id="2">
并且有一个<order>2,0,1</order>
或者有更好的方法吗?
非常感谢大家的帮助!我已经阅读了大量的 simpleXML 和 DOM 教程,但我就是不会使用它们哈哈!