dsh1102 2014-03-06 04:42
浏览 48
已采纳

使用simplexml获取XML元素属性

I have a xml file as follows:

<?xml version="1.0" ?>
<shop version="2.0" shop-name="XYZ">
 <category name="FOO1">
  <subcategory name="Foobar1">
     <product name="Productname1" id="1">
        <supplier name="XXX" logo="XXX.gif" />
        <desc>DESC</desc>
     </product>
     <product name="Productname2" id="2">
       ...
     </product>
  </subcategory>
 </category>
</shop>

And i would like to get attribute value of shop element - exactly shop-name

I used simplexml in php:

<?php
    $dataXML=simplexml_load_file("data.xml");
    $a=$dataXML->shop[0]["shop-name"];
    echo $a;
?>

as a result I get nothing. Have any idea what is wrong?

  • 写回答

2条回答 默认 最新

  • dtg78700 2014-03-06 04:48
    关注

    Those are attributes, so you need to access them correctly with attributes() method:

    $data = simplexml_load_file( 'data.xml' );
    $attributes = $data->attributes();
    echo $attributes['shop-name'];
    

    Or you can access it directly, since it's the main attribute:

    $data = simplexml_load_file( 'data.xml' );
    echo $data['shop-name'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?