Skip to content

Instantly share code, notes, and snippets.

@rgomezcasas
Last active December 16, 2015 05:28
Show Gist options
  • Save rgomezcasas/5384220 to your computer and use it in GitHub Desktop.
Save rgomezcasas/5384220 to your computer and use it in GitHub Desktop.
A simple function to transform from XML to Array in php
<?php
function XMLtoArray($xml) {
$xml = preg_replace('/(<\?xml[^?]+?)utf-16/i', '$1utf-8', $xml);
$xml = simplexml_load_string($xml);
return (array) $xml;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment