PHP simplexml_load_string() 函数

定义和用法

simplexml_load_string() 函数把 XML 字符串载入对象中。

如果失败,则返回 false。

语法

  1. simplexml_load_file(string,class,options,ns,is_prefix)
参数 描述
string 必需。规定要使用的 XML 字符串。
class 可选。规定性象的 class。
options 可选。规定附加的 Libxml 参数。
ns 可选。
is_prefix 可选。

返回值

返回类 SimpleXMLElement 的一个对象,该对象的属性包含 XML 文档中的数据。如果失败,则返回 false。

例子

  1. <?php
  2. $xmlstring = <<<XML
  3. <?xml version="1.0" encoding="ISO-8859-1"?>
  4. <note>
  5. <to>George</to>
  6. <from>John</from>
  7. <heading>Reminder</heading>
  8. <body>Don't forget the meeting!</body>
  9. </note>
  10. XML;
  11.  
  12. $xml = simplexml_load_string($xmlstring);
  13.  
  14. var_dump($xml);
  15. ?>

输出:

  1. object(SimpleXMLElement)#1 (4)
  2. {
  3. ["to"]=> string(4) "George"
  4. ["from"]=> string(4) "John"
  5. ["heading"]=> string(8) "Reminder"
  6. ["body"]=> string(29) "Don't forget the meeting!"
  7. }