file_get_contents不适用于远程文件

时间:2018-02-14 10:38:15

标签: php

file_get_contents在hostgator中不起作用,但在localhost中工作正常

提前感谢。

$query = file_get_contents('http://xxxxxxxxxxxx/test.php');
print_r($query);
echo $query;

我需要从上面的网址获取数据。

1 个答案:

答案 0 :(得分:0)

问题是某些主机会在allow_url_fopen文件中禁用php.ini。也许hostgator禁用它。阅读更多here

您可以使用cURL解决此问题。