不管是數(shù)字驗證碼,還是圖片驗證碼 只要是要我們輸入的,肯定要在驗證碼生成的那個地方, 保存一個確定的值到SESSION中
用下面的方法好像更合理,
$arr = array(
'image0'=>'寬帶',
'image1'=>'美女'
);
$rand = array_rand($arr,1);
$image = "./image/". $rand . '.png';
$image = imagecreatefrompng($image);
if ($image) {
$_SESSION['auth_image'] = $arr[$rand];
}
// ..識別輸出