从使用cloudflare PHP文件的网站请求数据获取内容

时间:2016-06-01 17:45:27

标签: php cloudflare

我正在尝试使用file_gets_content读取一个网站,但它无法使用,因为它们正在使用cloudflare。

我的代码

 <?php
$habbo = $_GET['name'];

$home = file_get_contents("http://www.drabbo.nl/home/".$habbo);
if (eregi("http://www.drabbo.nl/drabboweb/63_1d5d8853040f30be0cc82355679bba7c3395/web-gallery/images/mydrabbo/profile/drabbo_online_anim.gif", $home)){
$img = "img link";
}else{
$img = "img link";
}
header("Content-type: image/gif");
$im = imagecreatefromgif($img);
imagegif($im);
imagedestroy($im);
?>

我怎么能这样做

0 个答案:

没有答案