I need parse a response xml in php, and i call the object into object, but one object have a "." or "-" in middle.
For example xml :
[obj1]
[obj1.1]
Array(
[value]xxxxxx
.....
In php i trying :
$myvalue = $xml->obj1->obj1.1['value'];
echo $myvalue;
And need a function or method or instuction for realize this call to obj1.1. Thanks, PD: sorry for my bad english...