Arquivos
hhvm/hphp/test/slow/simple_xml/exclude_comments.php
T
danslo 079dc468ca Comments are not SimpleXML element children
- Comments should not be counted as node children

Closes #863
2013-07-18 17:28:44 -07:00

15 linhas
228 B
PHP

<?php
$element = simplexml_load_string(<<<EOF
<root>
<!-- I am a comment -->
<elem1>
<elem2 />
<!-- I am also a comment -->
</elem1>
</root>
EOF
);
var_dump($element->count());
var_dump($element->elem1->count());