在PHP中动态编辑XML

时间:2012-08-10 09:42:11

标签: php xml xml-parsing

我正在尝试读取和写入总是不同的XML文件。

我想要做的是定义可以为我的css中的每个类/ id更改的CSS属性(由php完成)。

所以元素可能如下所示:

<element id="header">
    <position>left</position>
    <background>#fff</background>
    <color>#000</color>
    <border>2px dotted #GGG</border>
</element>

但是内部节点可以改变(任何css属性)。

我想阅读本文,然后制作一个表格,我可以在其中编辑属性(设法做到这一点)。

现在我需要保存XML。我不能一次提交完整的表单,因为PHP(无法提交表单,你不知道表单元素名称)。我正在尝试使用Ajax并在表单中编辑时保存每个节点。 (的onChange)

所以我知道元素的“id”标记和节点名称。但我找不到直接访问节点并使用DOMDocument或SimpleXML编辑它的方法。

我被告知要尝试XPath,但我无法使用XPath进行编辑。

我怎么能尝试这样做?

1 个答案:

答案 0 :(得分:1)

$xml = <<<XML
<rootNode>
    <element id="header">
        <position>left</position>
        <background>#fff</background>
        <color>#000</color>
        <border>2px dotted #GGG</border>
    </element>
</rootNode>
XML;

// Create a DOM document from the XML string
$dom = new DOMDocument('1.0');
$dom->loadXML($xml);

// Create an XPath object for this document
$xpath = new DOMXPath($dom);

// Set the id attribute to be an ID so we can use getElementById()
// I'm assuming it's likely you will want to make more than one change at once
// If not, you might as well just XPath for the specific element you are modifying
foreach ($xpath->query('//*[@id]') as $element) {
    $element->setIdAttribute('id', TRUE);
}

// The ID of the element the CSS property belongs to
$id = 'header';

// The name of the CSS property being modified
$propName = 'position';

// The new value for the property
$newVal = 'right';

// Do the modification
$dom->getElementById($id)
    ->getElementsByTagName($propName)
    ->item(0)
    ->nodeValue = $newVal;

// Convert back to XML
$xml = $dom->saveXML();

See it working