时间:2021-07-01 10:21:17 帮助过:6人阅读
为什么服务器用file_get_contents获取淘宝的网页信息,但是不能获取天猫的网页信息。
天猫:
$content = file_get_contents('https://item.taobao.com/item.htm?id=38374207638');
淘宝:
$content = file_get_contents('https://item.taobao.com/item.htm?id=35586252795');
本地搭建的apache环境下,天猫和淘宝的网页信息都可以获取。
为什么服务器用file_get_contents获取淘宝的网页信息,但是不能获取天猫的网页信息。
天猫:
$content = file_get_contents('https://item.taobao.com/item.htm?id=38374207638');
淘宝:
$content = file_get_contents('https://item.taobao.com/item.htm?id=35586252795');
这跟你的服务器没关系,这是因为淘宝和天猫的服务器配置不让你抓而已。
建立考虑使用 CURL 。