1、字串
$xml = simplexml_load_string($data);
$array = json_decode(json_encode($xml),TRUE);
2、文件
$xml = simplexml_load_file($data);
$array= json_decode(json_encode($xml),TRUE);
1、字串
$xml = simplexml_load_string($data);
$array = json_decode(json_encode($xml),TRUE);
2、文件
$xml = simplexml_load_file($data);
$array= json_decode(json_encode($xml),TRUE);