Skip to content

Instantly share code, notes, and snippets.

@vrushank-snippets
Created December 13, 2012 10:53
Show Gist options
  • Save vrushank-snippets/4275691 to your computer and use it in GitHub Desktop.
Save vrushank-snippets/4275691 to your computer and use it in GitHub Desktop.
PHP : XML TO JSON
$fileContents = file_get_contents('http://webdevelopergeeks.com/demo/sms.xml');
$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
return $json;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment