使用php產生數字的驗證碼
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00); , 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$white);
//產生隨機的驗證碼;
for($i = 0; $i $code .= rand(0, 9);
}
imagestring($img, 5, 10, 10, $code, $black) ;
//加入雜訊幹擾
for($i=0;$i imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black);
($img, rand(0, 100) , rand(0, 100) , $green);
}
//輸出驗證碼
header("content-type: image/png");
imagepng($img) ;
imagedestroy($img);
以上就介紹了php簡單驗證碼,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。