标签: php
file_get_contents在hostgator中不起作用,但在localhost中工作正常
提前感谢。
$query = file_get_contents('http://xxxxxxxxxxxx/test.php'); print_r($query); echo $query;
我需要从上面的网址获取数据。
答案 0 :(得分:0)
问题是某些主机会在allow_url_fopen文件中禁用php.ini。也许hostgator禁用它。阅读更多here。
allow_url_fopen
php.ini
您可以使用cURL解决此问题。