Skip to content

Instantly share code, notes, and snippets.

@nanoninja
Created February 12, 2016 07:56
Show Gist options
  • Save nanoninja/f271d04a5f6c17fea040 to your computer and use it in GitHub Desktop.
Save nanoninja/f271d04a5f6c17fea040 to your computer and use it in GitHub Desktop.
PHP Encode / Decode data structures
<?php
$dom = simplexml_load_string(
'<root>
<langage>PHP</langage>
<version>7</version>
<parent>
<version>5</version>
</parent>
</root>'
);
$result[$dom->getName()] = $dom;
echo json_encode($result, JSON_PRETTY_PRINT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment