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...
要件
この拡張モジュールを使うには libxml 拡張モジュールが必要です。つまり、 --enable-libxml も指定しなければならないということです。 しかし、libxml はデフォルトで有効になっているのでこのオプションは暗黙のうちに指定されています。
SimpleXML 拡張モジュールは PHP 5 が必要になります。
crazyone at crazycoders dot net
24-Dec-2009 07:17
