Handle this typehints
[hiphop-php.git] / hphp / test / slow / simple_xml / children_offsetget.php
blobd133d0b5a21a5c6d5c850fa0776663b7b176cdf2
1 <?php
3 $element = simplexml_load_string(<<<EOF
4 <root>
5 <hello>world</hello>
6 </root>
7 EOF
8 );
10 var_dump((string)$element->children()[0]);