SimpleXML Not Reading URL


SimpleXML Not Reading URL

我试图让下面的代码工作。目前它只输出一个空白页。

if($vUrlDetails = simplexml_load_file($vUrl)) {
   // Do something
}

如果我使用file_get_contents()并将其保存到文件中,然后使用simplexml_load_file(),则可以正常工作。

使用simplexml_load_file()在URL上加载XML文件是否有限制?

我想你可以试试:

<?php
  // http://www.php.net/manual/en/simplexmlelement.construct.php
  $xml = new SimpleXMLElement('http://my.url.com/something.xml', 0, true);
?>