我最近将我的网站放在网上,发现simplexml_load_file问题。 它在本地服务器(MAMP)上完美运行,但不在网站上。 代码如下:
<?
$source = simplexml_load_file('http://domainname.com/file.xml') or die("Something is wrong");
echo $source->Result;
?>
以上代码在实时网站上显示以下消息:“
出了点问题
相同的代码在本地服务器MAMP上显示以下消息:
成功
file.xml是:
<?xml version="1.0"?>
<!DOCTYPE ValidateUser>
<ValidateUser>
<Customer>john</Customer>
<Result>Success</Result>
</ValidateUser>
提前谢谢。
答案 0 :(得分:7)
听起来您的托管服务提供商已禁用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;