How can I access attribute values in php:
[photos] => SimpleXMLElement Object
(
[@attributes] => Array
(
[page] => 1
[pages] => 1
[perpage] => 24
[total] => 18
)
I tried the following:
$photos->@attributes['total'] ;
$photos->{'@attributes'}['total'] ;
and many variations of this
source
share