file_get_contents 不能使用解决方法(原因是没开启)
提示:Warning: file_get_contents(网址****) [function.file-get-contents]: failed to open stream: No error in
检测PHP file_get_contents是否开启
PHP文件加放下面代码,并上传至服务器然后运行:
<?php
phpinfo();
?>
查看:
allow_url_fopen 如果是on
allow_url_include 如果是on
说明已经开启
开启方法:
服务器是WIN系统:
只需要到php.ini中把allow_url_fopen和on allow_url_include 改为 On,重启服务就可以了。
(如果PHP是与IIS共用,会有2个地方有这个文件,都要改掉PHP安装目录和C:Windows)