php小技巧:解决file_get_contents : failed to open stream: HTTP request failed!

Warning: file_get_contents(*******): failed to ope...

Warning: file_get_contents(*******): failed to open stream: HTTP request failed! HTTP/1.1 503 Service Unavailable


解决方式一:

在文件头添加

ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)');

给一个默认user_agent 让他认为自己是浏览器


解决方式二:

修改php.ini

搜索

user_agent


;user_agent="PHP"

最前面的分号删除,同时修改后面的php为

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

重启php

评论