我们在我们的一个项目中使用了 Captcha.php,它在所有浏览器中打开,但我们无法在 Google chrome 版本 22 中查看。
我们的验证码脚本
session_start();
$captcha = new SimpleCaptcha();
$captcha->CreateImage();
class SimpleCaptcha
{
function CreateImage()
{
header("Content-Type: image/jpeg");
$md5 = md5(rand(0,9999));
$pass = substr($md5, 10, 5);
$_SESSION["pass"] = $pass;
$image = ImageCreatetruecolor(100, 20);
$clr_white = ImageColorAllocate($image, 0, 0, 0);
$clr_black = ImageColorAllocate($image, 255, 255, 255);
imagefill($image, 0, 0, $clr_white);
imagefontheight(15);
imagefontwidth(15);
imagestring($image, 5, 30, 3, $pass, $clr_black);
return imagejpeg($image);
imagedestroy($image);
}
}
HTML 实现
<img src="code/captcha.php" width="100" height="20" alt="Captcha Code"/>
我们无法在 Google Chrome 上查看它。所有浏览器都返回相同的图像。