douwuying4709 2018-01-28 15:15
浏览 28
已采纳

取消设置xml子项不起作用

I have the xml file "flashcards.xml":

<flashcards>
 <category name="testCategory">
    <card front="A" back="B"/>
    <card front="C" back="D"/>
    <card front="E" back="F"/>
 </category>
</flashcards>

I try to remove a category by given attribute "name" like this in php:

<?php
  $xml = simplexml_load_file("flashcards.xml");
  if (isset($_POST['remCat'])) {
      $remCat = $_POST['remCat'];
      $path = 'category[@name="' . $remCat . "\"]";

      $allCategories = $xml->xpath($path);
      $toRemove = $allCategories[0];
      unset($xml->$toRemove);

      var_dump($xml->asxml());
  }
?>

This code should load the file, looks for the category child with the attribute "remCat" and unsets it. If I print out $toRemove its the right node, but var_dump($xml->asxml()); prints the unchanged file. The child is not removed.

  • 写回答

1条回答 默认 最新

  • dongzai3917 2018-01-28 15:38
    关注

    Using unset in this case is difficult as your trying to use $xml->$toRemove. So your trying to use the SimpleXMLElement returned by XPath to remove the element in the original document. This would work if you wanted to unset($xml->category[0]); but not with a SimpleXMLElement.

    You can instead use...

    $allCategories = $xml->xpath($path);
    echo $allCategories[0]->asXML().PHP_EOL;
    $toRemove = $allCategories[0];
    //unset($xml->$toRemove);
    $dom=dom_import_simplexml($toRemove);
    $dom->parentNode->removeChild($dom);
    

    This uses the much more powerful DOM api.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?