Web服务无法获取数据

时间:2012-03-14 10:51:36

标签: php web-services

当我在localhost中测试我的代码(即代码和webservice在本地)时,一切正常,但是当我们将代码移动到服务器时,我没有从webservice获取数据。

发生以下消息。 无法打开流:HTTP请求失败! HTTP / 1.0 404 Not Found。

<?php $Name=file_get_contents('web service call');

$output= json_decode($Name);

?>

1 个答案:

答案 0 :(得分:0)

该错误表示找不到file_get_contents()调用的网址。

当您将代码移动到服务器时,您是否也移动了“Web服务”?如果位置已更改,则需要在file_get_contents()来电中更新。