安装/配置
在线手册:中文 英文
PHP手册

需求

此扩展需要 libxml PHP 扩展. 这表示需要使用 --enable-libxml , 尽管这将隐式完成因为libxml是缺省开启的.

The SimpleXML extension requires PHP 5.


安装/配置
在线手册:中文 英文
PHP手册
PHP手册 - N: 需求

用户评论:

crazyone at crazycoders dot net (24-Dec-2009 03:17)

You don't NEED "allow_url_fopen = On". This is only if you query for external xml feeds such as:

<?php $data = simplexml_load_file('http://www.example.com/myfeed.xml"); ?>

In many other cases you WONT need allow_url_fopen because files will be local or you will use posted XML data...