Skip to content

Instantly share code, notes, and snippets.

@Ambalus
Created November 21, 2015 09:19
Show Gist options
  • Select an option

  • Save Ambalus/4d9a3cf1c60a79a44c15 to your computer and use it in GitHub Desktop.

Select an option

Save Ambalus/4d9a3cf1c60a79a44c15 to your computer and use it in GitHub Desktop.
function xml2json($xmlString){
$fileContents = str_replace(["\n", "\r", "\t"], '', $xmlString);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml,JSON_UNESCAPED_UNICODE);
return $json;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment