doujiao3016 2016-07-11 15:58
浏览 75
已采纳

PHP:按属性从xml中删除节点

suppose I have an xml like this:

<products>
    <product id="1">
        <name>aaa</name>
        <producturl>aaa</producturl>
        <bigimage>aaa</bigimage>
        <description>aaa</description>
        <price>aaa</price>
        <categoryid1>aaa</categoryid1>
        <instock>aaa</instock>
    </product>
    <product id="2">
        <name>aaa</name>
        <producturl>aaa</producturl>
        <bigimage>aaa</bigimage>
        <description>aaa</description>
        <price>aaa</price>
        <categoryid1>aaa</categoryid1>
        <instock>aaa</instock>
    </product>
</products>

and I need to delete certain node depending on the id attribute, if this attribute is in an array.

I've tried different ways, but the xml is outputted always as the original one!

My code so far:

<?php header("Content-type: text/xml");
$url="http://www.aaa.it/aaa.xml";
$url=file_get_contents($url);
$array=array("1","4","5");
$doc=new SimpleXMLElement($url);
foreach($doc->product as $product){
    if(!in_array($product['id'],$array)){
        $dom=dom_import_simplexml($product);
        $dom->parentNode->removeChild($dom);
        // unset($doc->product->$product);
    }
}
echo $doc->asXml(); ?>

Thanks a lot everyone.

  • 写回答

1条回答 默认 最新

  • duandian2725 2016-07-11 16:58
    关注

    Consider a partly XPath and XSLT solution, both siblings in the Extensible Stylesheet Family. XPath is first used to retrieve all current product ids which is then compared with current array of ids to keep using array_diff. XSLT is then iteratively built to remove nodes according to these unmatched ids. Removing nodes in XSLT requires simply an empty template match.

    // Load the XML source
    header("Content-type: text/xml");
    $url="http://www.aaa.it/aaa.xml";
    $url=file_get_contents($url);
    $doc=new SimpleXMLElement($url);
    
    // Retrieve all XML product ids with XPath
    $xpath = $doc->xpath("//product/@id");
    $xmlids = [];
    foreach($xpath as $item => $value){ $xmlids[] = (string)$value; }
    
    // Compare difference with $array
    $array = array("1","4","5");
    $removeids = array_diff($xmlids, $array);
    
    // Dynamically build XSLT string for each resulting id
    foreach($removeids as $id){        
      $xslstr='<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
                 <xsl:output version="1.0" encoding="UTF-8" indent="yes" />
                 <xsl:strip-space elements="*"/>
    
                  <xsl:template match="@*|node()">
                     <xsl:copy>
                       <xsl:apply-templates select="@*|node()"/>
                     </xsl:copy>
                  </xsl:template>
    
                  <xsl:template match="product[@id=\''.$id.'\']"/>
    
               </xsl:transform>';                    
      $xsl = new SimpleXMLElement($xslstr);
    
      // Configure the transformer and run
      $proc = new XSLTProcessor;
      $proc->importStyleSheet($xsl);
      $newXML = $proc->transformToXML($doc);
    
      // Adjust $doc object with each loop
      $doc = new SimpleXMLElement($newXML);
    }
    
    // Echo Output    
    echo $doc->asXML();   
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。