<div class="_img" style="background-image: url("https://example.com/image.jpg"); width: 100%; height: 100%; max-width: 100%; max-height: 100%; border-radius: 0px;"></div>
Как из класса _img получить стиль и взять от туда только url background-image?
Использую phpsimple
На данный момент код, к сожалению не выводит ничего.
include_once('config/phpsimple/simple_html_dom.php');
$html = file_get_html('https://example.com/index.html');
foreach($html->find('div._img') as $element) {
echo $element = $html->getAttribute('style');
}