<?php
$str = '<div>
<div id="priceRangeWrapper">
<div id="priceSlider" min="110" max="650"></div>
</div>
</div>';
$doc = new DOMDocument();
$doc->loadHTML( $str); // Load the HTML string from your post
$xpath = new DOMXPath( $doc);
$node = $xpath->query( '//div[@id="priceSlider"]')->item(0); // Get the <div>
echo $node->getAttribute('min') . " " . $node->getAttribute('max');
- Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
- 110 650
preferences:
72.2 ms | 408 KiB | 5 Q