3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = simplexml_load_string(' <person> <profile> <name>PHP developer</name> </profile> </person>'); // get all names $xml = $xml->xpath('/person/profile/name'); // get first result $xml = reset($xml); // show result print_r($xml);

preferences:
35.62 ms | 402 KiB | 5 Q