1$xmlfile = file_get_contents($path);
2 $ob= simplexml_load_string($xmlfile);
3 $json = json_encode($ob);
4 $configData = json_decode($json, true);
5
1$get = file_get_contents('http://steamcommunity.com/groups/starhawk/memberslistxml/?xml=1.xml');
2$arr = simplexml_load_string($get);
3print_r($arr);
4