<?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); }
You have javascript disabled. You will not be able to edit any code.