使用PHP对XML节点进行排序

时间:2010-05-07 12:12:13

标签: php xml sorting nodes

我有一个序列化字符串,用POST进入:

$imgdata = $_POST['imgdata']; // li[]=2&li[]=3&li[]=1&li[]=4

在此示例中,001在003之后重新排序 如何使用此新订单更新我的XML文件? 我想我需要simpleXML或xpath。以下是我的想法:

// 1. load xml string
$xml = simplexml_load_file('test.xml');
/*
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
    <album>
        <img src="001.jpg" caption="First caption" />
        <img src="002.jpg" caption="Second caption" />
        <img src="003.jpg" caption="3th caption" />
        <img src="004.jpg" caption="4th caption" />
    </album>
</gallery>
*/

// 2. sort nodes
// $new_xml_string = "......";

// 3. write out new XML file
$handle = fopen("images.xml", 'w');
fwrite($handle, $new_xml_string);
fclose($handle);

2 个答案:

答案 0 :(得分:3)

更改节点的顺序相当于XML的转换。你可以这样做,

<?php

$temp = <<<EOT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     version="1.0">
<xsl:output method="xml" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="node() | @*">
      <xsl:sort select="@src"/>
    </xsl:apply-templates>
  </xsl:copy>
</xsl:template>
</xsl:stylesheet>
EOT;


$xml = new DOMDocument;
$xml->loadXML($oldXml);
$xsl = new DOMDocument;
$xsl->loadXML($temp);
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules

$newXml = $proc->transformToXML($xml);

答案 1 :(得分:2)

XSLT是一种正确的方法,但您可以使用XPath +数组。第一步 - 选择键(属性或其他任何东西),将它们放入数组中,然后使用标准PHP方法对其进行排序。第二步 - 使用数组作为键映射来创建新的XML。