我正在尝试使用以下代码。目前它只输出任何内容,一个空白页面。
if($vUrlDetails = simplexml_load_file($vUrl)) {
// Do something
}
如果我使用file_get_contents()
并将其保存到文件然后使用simplexml_load_file()
,则可以正常工作。
使用simplexml_load_file()
在网址上加载XML文件是否有限制?
答案 0 :(得分:1)
我想你可以试试:
<?php
// http://www.php.net/manual/en/simplexmlelement.construct.php
$xml = new SimpleXMLElement('http://my.url.com/something.xml', 0, true);
?>