3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = <<<XML <a> <b> <c>text</c> </a> XML; $xml = new SimpleXMLElement($string); $result = $xml->xpath('/a/b/c'); foreach ($result as $r) { if (!empty($r)) { print_r((string)$r); } else { //print_r((string)$r); echo 'empty'; } }

preferences:
40.07 ms | 402 KiB | 5 Q