PHP函数积累
PHP函数积累 simplexml_load_string 将Xml转化为对象;返回对象 1 <?php 2 $string = <<<XML 3 <?xml version='1.0'?> 4 <document> 5 <title>Forty What?</title> 6 <from>Joe</from> 7 <to>Jane</to> 8 <body> 9 I know that's the answer -- but what's the question? 10 </body> 11 </document> 12 XML; 13 $xml = simplexml_load_string($string); 14 15 var_dump($xml); 16 ?>结果: object(SimpleXMLElement)[1] public 'title' => string 'Forty What?' (length=11) public 'from' => string 'Joe' (length=3) public 'to' => string 'Jane' (length=4) public 'body' => string ' I know that's the answer -- but what's the question? ' (length=56)