如何使用SimpleXml访问元素属性?

时间:2011-01-07 11:31:09

标签: php simplexml

我怎样才能在php中访问属性值:

[photos] => SimpleXMLElement Object
    (
        [@attributes] => Array
            (
                [page] => 1
                [pages] => 1
                [perpage] => 24
                [total] => 18
            )

我尝试了以下内容:

$photos->@attributes['total'] ;
$photos->{'@attributes'}['total'] ;

以及此

的许多变体

1 个答案:

答案 0 :(得分:8)

只需

echo $photos['total'];

请参阅Example #5 Using attributes