Answers for "php get src content from image tag"

PHP
0

php get src content from image tag

$html = '<img id="12" border="0" src="/images/image.jpg"
         alt="Image" width="100" height="100" />';

$doc = new DOMDocument();
$doc->loadHTML($html);
$xpath = new DOMXPath($doc);
$src = $xpath->evaluate("string(//img/@src)"); # "/images/image.jpg"
Posted by: Guest on June-29-2020

Browse Popular Code Answers by Language