我有這樣的代碼,但是,當我在哈寶的功能不會爲圖像在線工作記錄,它只是顯示圖像脫機:功能egeri()不工作
<?php
$name = $_GET['habbo'];
$home = file_get_contents("http://www.habbo.com.br/home/".$name);
if (eregi("http://habboo-a.akamaihd.net/habboweb/63_1dc60c6d6ea6e089c6893ab4e0541ee0/2245/web-gallery/images/myhabbo/profile/habbo_online_anim.gif", $home))
{
$img = "http://habboo-a.akamaihd.net/habboweb/63_1dc60c6d6ea6e089c6893ab4e0541ee0/2245/web-gallery/images/myhabbo/profile/habbo_online.gif";
}
else
{
$img = "http://habboo-a.akamaihd.net/habboweb/63_1dc60c6d6ea6e089c6893ab4e0541ee0/2245/web-gallery/images/myhabbo/profile/habbo_offline.gif";
}
header("Content-type: image/gif");
$im = imagecreatefromgif($img);
imagegif($im);
imagedestroy($im);
?>
'eregi()'已被棄用,可能是由PHP的版本,您使用的去除。您需要使用'preg_match()'來代替(儘管我懷疑正則表達式根本不需要,而標準比較運算符會這樣做)。 –
是的,看起來你可以使用'=='... – JAL
警告:從PHP 5.3.0開始,此功能已被拒絕。依靠這個功能是非常不鼓勵的。 – RaviRokkam