Home > Backend Development > PHP Tutorial > 为什么服务器不可以用 $content = file_get_contents('');获取天猫的网页内容呢?

为什么服务器不可以用 $content = file_get_contents('');获取天猫的网页内容呢?

WBOY
Release: 2016-06-06 20:21:12
Original
1381 people have browsed it

本地搭建的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');

回复内容:

本地搭建的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 。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template