Ver original<?php$str = <<<XML<foo> <bar /> <bar /> <bar /> <bar /> <bar /></foo>XML;$xml = new SimpleXMLElement($str);echo count($xml->xpath('//bar')); //imprime 5