Wrote a sample:
$ret = $html->find('.firminfo h1 abbr'); print_r($ret);
The result was:
Array ( [0] => simple_html_dom_node Object ( [nodetype] => 1 [tag] => abbr [attr] => Array ( [title] => Значение поля ) [children] => Array ( ) [nodes] => Array ( [0] => simple_html_dom_node Object ( [nodetype] => 3 [tag] => text [attr] => Array ( ) [children] => Array
So, how can I remove the value from the very beginning, right here [attr] [title]
=> Field value?