本篇文章給大家帶來的內容是關於php實現產生混合驗證碼與映像驗證碼並測試(代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。
產生混合驗證碼,並封裝成函數,檔案名稱:buildVerifyCode.func.php
//range('a','z')將括弧中的內容作為索引值產生一個索引數組//array_merge($array1,$array2)合并兩個數組中的索引值,產生新索引數組//array_flip()將括弧中的內容,鍵名與索引值對換//array_rand($array,$length)隨機取出$array中$length長度的鍵名作為新數組的索引值,產生一個索引數組//join('',$array)以空串連數組中的值,以數組的內容產生字串
<?phpfunction buildVerifyCode($type=2,$length=4){switch ($type) {case 0:$string=join('',array_rand(range(0,9),$length));break;case 1:$string=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'))),$length));break;case 2:$string=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'),range(0,9))),$length));break;}return $string;}
測試產生的驗證碼是否正確,檔案名稱:getCode.php
<?phprequire 'buildVerifyCode.func.php';echo buildVerifyCode();// $fontfiles=['msyh.ttc','msyhbd.ttc','msyhl.ttc','simsun.ttc','Sitka.ttc'];// $fontfile=$fontfiles[mt_rand(0,count($fontfiles)-1)];// var_dump($fontfile);
產生映像驗證碼,具體注釋有空再寫,檔案名稱:getVerifyCodeImg.func.php
<?php$width=100;$height=30;//建立畫布,預設底色黑色,rgb0,0,0$image=imagecreatetruecolor($width,$height);//建立白色,方便覆蓋畫布$white=imagecolorallocate($image,255,255,255);//建立白色矩形覆蓋原始畫布imagefilledrectangle($image,1,1,$width-2,$height-2,$white);require 'buildVerifyCode.func.php';$type=2;$length=4;$verifyCode=buildVerifyCode($type,$length);for($i=0;$i<$length;$i++){$color=imagecolorallocate($image,mt_rand(50,90),mt_rand(80,200),mt_rand(90,150));$size=mt_rand(14,16);$angle=mt_rand(-15,15);$x=($i*100/5)+$size;$y=mt_rand(20,25);$fontfiles=['msyh.ttc','msyhbd.ttc','msyhl.ttc','simsun.ttc','Sitka.ttc'];$fontfile="../fonts/".$fontfiles[mt_rand(0,count($fontfiles)-1)];$text=substr($verifyCode,$i,1);imagettftext($image,$size,$angle,$x,$y,$color,$fontfile,$text);}$pixel=120;if($pixel){$pixelcolor=imagecolorallocate($image,mt_rand(150,170),mt_rand(100,140),mt_rand(90,160));for($i=0;$i<$pixel;$i++){imagesetpixel($image,mt_rand(0,$width-1),mt_rand(0,$height-1),$pixelcolor);}}$line=4;if($line){for($i=0;$i<$line;$i++){imageline($image,mt_rand(0,$width-1),mt_rand(0,$height-1),mt_rand(0,$width-1),mt_rand(0,$height-1),$pixelcolor);}}header('content-type:image/png');imagepng($image);imagedestroy($image);