PHP simplexml_load_file() 函数

定义和用法

simplexml_load_file() 函数把 XML 文档载入对象中。

如果失败,则返回 false。

语法
  1. simplexml_load_file(file,class,options,ns,is_prefix)
参数描述
file必需。规定要使用的 XML 文档。
class可选。规定新对象的 class。
options可选。规定附加的 Libxml 参数。
ns可选。
is_prefix可选。
返回值

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


例子

XML 文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <note>
  3. <to>George</to>
  4. <from>John</from>
  5. <heading>Reminder</heading>
  6. <body>Don't forget the meeting!</body>
  7. </note>

PHP 代码:

  1. <?php
  2. if (file_exists('test.xml'))
  3. {
  4. $xml = simplexml_load_file('test.xml');
  5. var_dump($xml);
  6. }
  7. else
  8. {
  9. exit('Error.');
  10. }
  11. ?>

输出:

  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. }

分类导航