我最近把我的网站放在网上,发现simplexml_load_file问题.
它在本地服务器(MAMP)上完美运行,但不在网站上.
代码如下:
<?
$source = simplexml_load_file('http://domainname.com/file.xml') or die("Something is wrong");
echo $source->Result;
?>
Something is wrong
Success
而file.xml是:
<?xml version="1.0"?>
<!DOCTYPE ValidateUser>
<ValidateUser>
<Customer>john</Customer>
<Result>Success</Result>
</ValidateUser>
提前致谢.
解决方法:
听起来您的托管服务提供商已禁用PHP打开URL作为文件的能力.
在您的服务器上运行以下snippit代码.如果结果为“0”,则表示此功能
已被禁用.
<?PHP var_dump(ini_get('allow_url_fopen')); ?>
如果禁用它,您可能需要使用类似CURL之类的东西来获取XML文件
处理它.然后,您可以使用simplexml_load_string()而不是simplexml_load_file()
以下是如何使用CURL的示例:
http://davidwalsh.name/curl-download
如果CURL也不可用,您将不得不与您的托管讨论替代方案
供应商.
/* gets the data from a URL */
function get_data($url) {
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$returned_content = get_data('http://davidwalsh.name');
$source = simplexml_load_string($returned_content) or die("Something is wrong");
echo $source->Result;