php驗證碼代碼怎么寫
我們先來處理php程序文件的開始符和結束符,這個不太復雜,我們用兩個變量來表示它們:
復制代碼 代碼如下:
<?php
/pic/p>
header("Content-type:image/png");
/pic/p>
$im=@imagecreatetruecolor(50,20)ordie("建立圖像失敗");
/pic/p>
$background_color=imagecolorallocate($im,255,255,255);
/pic/p>
imagefill($im,0,0,$background_color);
/pic/p>
$border_color=imagecolorallocate($im,200,200,200);
/pic/p>
imagerectangle($im,0,0,49,19,$border_color);
/pic/p>
for($i=2;$i<18;$i++){
/pic/p>
$line_color=imagecolorallocate($im,rand(200,255),rand(200,255),rand(200,255));
/pic/p>
imageline($im,2,$i,47,$i,$line_color);
}
/pic/p>
$font_size=12;
/pic/p>
$Str[0]="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$Str[1]="abcdefghijklmnopqrstuvwxyz";
$Str[2]="01234567891234567890123456";
/pic/p>
$imstr[0]["s"]=$Str[rand(0,2)][rand(0,25)];
$imstr[0]["x"]=rand(2,5);
$imstr[0]["y"]=rand(1,4);
/pic/p>
$imstr[1]["s"]=$Str[rand(0,2)][rand(0,25)];
$imstr[1]["x"]=$imstr[0]["x"]+$font_size-1+rand(0,1);
$imstr[1]["y"]=rand(1,3);
/pic/p>
$imstr[2]["s"]=$Str[rand(0,2)][rand(0,25)];
$imstr[2]["x"]=$imstr[1]["x"]+$font_size-1+rand(0,1);
$imstr[2]["y"]=rand(1,4);
/pic/p>
$imstr[3]["s"]=$Str[rand(0,2)][rand(0,25)];
$imstr[3]["x"]=$imstr[2]["x"]+$font_size-1+rand(0,1);
$imstr[3]["y"]=rand(1,3);
/pic/p>
for($i=0;$i<4;$i++){
/pic/p>
$text_color=imagecolorallocate($im,rand(50,180),rand(50,180),rand(50,180));
/pic/p>
imagechar($im,$font_size,$imstr[$i]["x"],$imstr[$i]["y"],$imstr[$i]["s"],$text_color);
}
/pic/p>
imagepng($im);
/pic/p>
imagedestroy($im);
?> </p
【php驗證碼代碼怎么寫】相關文章:
php下載代碼怎么寫12-13
php生成動態(tài)圖片驗證碼代碼08-11
php實現(xiàn)驗證碼制作03-22
php如何實現(xiàn)驗證碼03-15
如何在cmd下面寫php代碼11-04
怎么讓PHP程序代碼占用資源最小12-11
php分頁類代碼08-05
- 相關推薦