3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = new \SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <image id="my-image" xlink:href="http://example.com/image.png" /> </svg> '); $xml->registerXPathNamespace('svg', 'http://www.w3.org/2000/svg'); $xml->registerXPathNamespace('xlink', 'http://www.w3.org/1999/xlink'); $images = $xml->xpath('//svg:image[@xlink:href]'); foreach ($images as $image) { var_dump($image); }

preferences:
28.26 ms | 404 KiB | 5 Q