$tag_code = '<div class="abc" title="text title"> </div>';
$xml = new SimpleXMLElement($tag_code);
$attributes = $xml->attributes();
echo $attributes['title'];
Так можно получить текст любого атрибута.
$tag_code = '<div class="abc" title="text title"> </div>';
$xml = new SimpleXMLElement($tag_code);
$attributes = $xml->attributes();
echo $attributes['title'];
Так можно получить текст любого атрибута.