$fileContents= file_get_contents($url);
$fileContents = str_replace(array("
", "
", " "), '', $fileContents);
$fileContents = trim(str_replace('"', "'", $fileContents));
$simpleXml = simplexml_load_string($fileContents);
$json = json_encode($simpleXml);
foreach($xml->children() as $state)
{
$states[]= array('state' => (string)$state->name);
}
echo json_encode($states);
$xml = simplexml_load_string($xml_string);
// convert to json
$json = json_encode($xml);
// make array
$array = json_decode($json,TRUE);