file_get_contents不适用于localhost

时间:2016-11-04 13:37:12

标签: php codeigniter

当网址来自localhost时,

file_get_contents不起作用(file_get_contents(" http://localhost:9000"))。

我尝试了file_get_contents(链接到谷歌)来测试它并且运行正常。

也尝试使用127.0.0.1:9000地址,但没有成功。

托管在不同网址上的同一项目也有效。

allow_url_fopen已启用,extension = php_openssl.dll已启用。

使用:

" $ domain = array(指向本地主机的链接);"

加载网址的

或curl也不仅适用于localhost。

PS:可以使用浏览器正常访问URL。

控制器代码: 代码:

$my_var = file_get_contents('http://localhost:9000'); // timeout here only if localhost
var_dump($my_var);
die();

0 个答案:

没有答案