I have some xml data and I am trying to access some elements. The structure of data
is as below (using print_r($data)).
I can get $data->{\'parent\'}->title
Do not use print_r() to inspect a SimpleXMLElement. Instead, just look at the XML. Children are accessed using the object notation ->name
and attributes are accessed using the array notation ['name']
.
In your case, I guess the correct way to access this attribute would be
$data->parent->link[0]['href']