????? php中的simplexml_load_string函數(shù)將xml格式字符串轉(zhuǎn)換為對應的SimpleXMLElement
對象。
????? 例如:
$note=<<<XML
<note>
???? <to>Tove</to>
? ? <from>Jani</from>
???? <heading>Reminder</heading>
? ? <body>Don't forget me this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
print_r($xml);
結(jié)果為:
SimpleXMLElement Object
(
[to] => Tove
[from] => Jani
[heading] => Reminder
[body] => Don't forget me this weekend!
)