0

我试图在 designmap.xml 之后添加一个新节点

新节点包含一个由下面的数组自定义的 src 属性。

$newStories = Array ( [0] => u102 [1] => u103 [2] => u107 [3] => u156  );

$designMap = simplexml_load_file('designmap.xml');

foreach ($newStories as $story) {
  $newStoryNode = '<idPkg:Story src="Stories/Story_' . $story . '.xml" />';
  $insert = new SimpleXMLElement($newStoryNode);
  $target = current($designMap->xpath('//idPkg:Story[last()]'));

  simplexml_insert_after($insert, $target);
}

function simplexml_insert_after(SimpleXMLElement $insert, SimpleXMLElement $target)
{
    $target_dom = dom_import_simplexml($target);
    $insert_dom = $target_dom->ownerDocument->importNode(dom_import_simplexml($insert), true);
    if ($target_dom->nextSibling) {
        return $target_dom->parentNode->insertBefore($insert_dom, $target_dom->nextSibling);
    } else {
        return $target_dom->parentNode->appendChild($insert_dom);
    }
}

$designMap->asXML('designmap.xml');

对于每种外观,我都会收到以下警告:

  1. SimpleXMLElement::__construct(): 命名空间错误:Story 上的命名空间前缀 idPkg 未定义
  2. SimpleXMLElement::__construct(): u102.xml
  3. SimpleXMLElement::__construct(): ^ in
4

1 回答 1

0

$xpath->query("//idPkg:Story[last()]")

不确定您是否需要接受第一条语句“//idPkg:Story”

于 2017-01-30T10:25:49.870 回答