0

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);
4

2 に答える 2

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);
于 2010-05-07T14:49:24.740 に答える
2

XSLTは正しい方法ですが、XPath+arrayを使用できます。最初のステップ-キー(属性など)を選択し、それらを配列に入れてから、標準のPHPメソッドで並べ替えます。2番目のステップ-配列をキーマップとして使用して、新しいXMLを作成します。

于 2011-11-26T19:17:51.790 に答える