解决php无法通过file_get_contents或curl采集页面内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决php无法通过file_get_contents或curl采集页面内容相关的知识,希望对你有一定的参考价值。

解决这个问题有2种方法
 
1、设置php.ini配置文件,找到user_agent这个开启,把前面的分号去掉;
 
2、通过php的ini_set()方法设置用户代理。
 
实例如下
 
ini_set(‘user_agent’,‘Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322)’);
echo file_get_contents(‘你想要采集的页面url’);

以上是关于解决php无法通过file_get_contents或curl采集页面内容的主要内容,如果未能解决你的问题,请参考以下文章

解决file_get_contents无法请求https连接的方法

无法让 cURL 或 file_get_contents 在 PHP 中工作

file_get_contents无法获取数据的一种情况

无法通过 HTTPS 获取 file_get_contents 或 cURL

file_get_contents 通过 php 失败,通过浏览器工作

PHP file_get_contents 函数超时的几种解决方法