4

XML ファイル内の質問と回答の要素を置換する関数を作成する際に問題があります。私はphp domを学習するために多くの研究を行いましたが、この関数の作成に行き詰まっています。問題は、属性 ID で親要素の行を取得しようとすると null が返されるか、xpath を使用すると空のオブジェクトが返されることです。正しい親要素を取得した後、関数が正しく機能するかどうかはわかりませんが、それが次のステップだと思います。

私のXMLは次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<root>
  <row id="1">
    <question>Wat doet de vuilnisman?</question>
    <answer>Hij tilt de vuilnisbak in de vuilnisauto.</answer>
  </row>
  <row id="2">
    <question>Wat zegt de tandarts vaak?</question>
    <answer>U mag nu spoelen.</answer>
  </row>
</root>

そして私のphp関数:

//modifies rows
function modifyRows($file, $rowIds, $rowText) {
    $xmlDoc = new DOMDocument();
    $xmlDoc->preserveWhiteSpace = false;
    $xmlDoc->formatOutput = true;   
    $xmlDoc->load($file);
    foreach($rowIds as $rowId) {
        $parent = $xmlDoc->getElementById($rowId);
        for($i=0;$i<count($rowText);$i++) {
            $newQ = $xmlDoc->createElement('question');
            $qText = $xmlDoc->createTextNode($rowText[$i]);
            $qText = $newQ->appendChild($qText);
            $newA = $xmlDoc->createElement('answer');
            $aText = $xmlDoc->createTextNode($rowText[$i++]);
            $aText = $newA->appendChild($aText);
        }
        $oldQ = $parent->getElementsByTagName('question');
        $oldA = $parent->getElementsByTagName('answer');        
        $parent->replaceChild($newQ, $oldQ);
        $parent->replaceChild($newA, $oldA);
    }   
    $xmlDoc->save($file);
}

$rowIds は、array(0=>"question",1=>"answer") などの質問と回答の文字列を含む配列内の ans rowText が変更された行の番号を含む配列です。行を追加または削除することで、XML ファイルの内容を大きくしたり小さくしたりできます。私はすでにそのための「作業」関数を作成しました。

4

1 に答える 1

13

ハクレとインターネットのおかげで問題を解決できました。同じ問題を抱えている人のために、これが私がそれを解決した方法です。

    function getElementById($id) {
        $xpath = new DOMXPath($this->xmlDoc);
        return $xpath->query("//*[@id='$id']")->item(0);
    }
于 2013-04-30T21:12:45.813 に答える