解决这个问题有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’);
时间: 2024-10-11 16:37:51