Получить элементы по атрибуту из DOM

Автор: | 18.04.2016
function get_element_by_attr($dom,$attr,$value)
{
$finder = new DomXPath($dom);
$nodes = $finder->query("//*[contains(concat(' ', normalize-space(@{$attr}), ' '), ' $value ')]");
return $nodes;
}

 

Раздел: PHP