$str = "one->two->three";$xml = simple_xml_load_string....;
$xml->$str;$xml->one->two->three;$xml->{'one->two->three'}$str = "one->two->three";
$xml = simple_xml_load_string....;
$result = $xml;
foreach (explode('->', $str) as $s) {
$result = $result->$s;
}