Skip to content

Instantly share code, notes, and snippets.

@danslo
Created August 5, 2013 19:51
Show Gist options
  • Save danslo/6158972 to your computer and use it in GitHub Desktop.
Save danslo/6158972 to your computer and use it in GitHub Desktop.
<?php
$element = simplexml_load_string(<<<EOF
<root>
<hello>world</hello>
</root>
EOF
);
echo $element->children()[0] . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment