close

 

<?php
$xmlstring = <<<XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
XML;

$xml = simplexml_load_string($xmlstring);

$json = json_encode($xml);
$array = json_decode($json,TRUE);

print_r($array);

?>


輸出:
Array
(
[to] => George
[from] => John
[heading] => Reminder
[body] => Don't forget the meeting!
)

arrow
arrow
    全站熱搜

    stockwfj3 發表在 痞客邦 留言(0) 人氣()