file_get_contents返回为false的问题排查
今天业务新上线两台机器,功能测试中发现file_get_contents返回为false。
用curl的方式请求了下,返回了数据。
比较奇怪,查看php错误日志,发现有类似这样的错误。
PHP Warning: file_get_contents() [<a href='function.file-get-contents'>function.file-get-contents</a>]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0
编辑php.ini,打开allow_url_fopen
选项,问题解决。