<?php $html = <<<HTML <div data-image-id="344231" style="height: 399.333px; background-image: url('/website/view_image/344231/medium'); background-size: contain;"></div> HTML; $doc = new DOMDocument(); $doc->loadHTML($html); $elm = $doc->getElementsByTagName("div"); $result = array (); $style = $doc->getElementsByTagName("div")->item(0)->getAttribute("style"); foreach (explode("; ", $style) as $str) if (preg_match ('/background-image: url\(([^)]+)\)/', $str, $matches)) { $result[] = $matches[1]; } echo $result[0];
You have javascript disabled. You will not be able to edit any code.