由於註冊的時候常常會用到註冊碼來防止機器惡意註冊,這裡我發表一個產生圖片驗證碼的基本映像,很簡陋,有需要的小夥伴可以參考下
image.func.php
<?php require_once('string.func.php'); function verifyImage( $type=1,$length=4,$pixel=0,$line=0,$sess_name="verify"){ session_start(); /*定義長度和寬度*/$width=80;$height=30;/* 建立畫布*/$image=imagecreatetruecolor($width, $height); /*本函數用來匹配圖形的顏色,供其它繪圖函數使用。參數 image 表示圖形的 handle。參數 red、green、blue 是色彩三原色,其值從 0 至 255....我在此定義黑色和白色*/$white=imagecolorallocate($image, 255, 255, 255);$black=imagecolorallocate($image,0,0,0); /*本函數將圖片的封閉長方形地區著色。參數 x1、y1 及 x2、y2 分別為矩形對角線的座標。參數 col 表示欲塗上的顏色*/imagefilledrectangle($image, 1, 1, $width-2, $height-2, $white); /*buildRandomString函數用來產生一個驗證碼*/$chars=buildRandomString($type,$length); /*將驗證碼給session以便用來判斷使用者輸入是否正確*/$_SESSION[$sess_name]=$chars; /*定義字型庫*/$fontfiles=array('msyh.ttf','msyhbd.ttf','simsun.ttc','SIMYOU.TTF','STHUPO.TTF','STKAITI.TTF','STLITI.TTF'); /*用迴圈來將驗證碼一個一個的寫入圖片中*/for($i=0;$i<$length;$i++){ $size=mt_rand(14,18); $angle=mt_rand(-15,15); /*驗證碼的橫座標與縱座標*/ $x=5+$i*$size; $y=mt_rand(20,26); $color=imagecolorallocate($image,mt_rand(50,190),mt_rand(50,200),mt_rand(50,90)); $fontfile="../font/".$fontfiles[mt_rand(0,count($fontfiles)-1)]; $text=substr($chars,$i,1); /*本函數將 TTF (TrueType Fonts) 字型文字寫入圖片*/ imagettftext($image, $size, $angle, $x, $y, $color, $fontfile, $text);}if($pixel){for($i=0;$i<50;$i++){ /*本函數可在圖片上繪出一點。參數 x、y 為欲繪點的座標,參數 col 表示該點的顏色*/ imagesetpixel($image, mt_rand(0,$width-1), mt_rand(0,$height-1), $black);}}if($line){ for($i=0;$i<10;$i++) { $color=imagecolorallocate($image,mt_rand(50,90),mt_rand(50,200),mt_rand(50,90)); /*畫線段*/ imageline($image, mt_rand(0,$width-1), mt_rand(0,$height-1), mt_rand(0,$width-1), mt_rand(0,$height-1), $color);}}/*以gif形式輸出*/header("content-type:image/gif");/*建立GIF圖 並輸出到網頁*/imagegif($image);/*釋放與 image 關聯的記憶體*/imagedestroy($image);}
string.func.php
<?php function buildRandomString($type=1,$length=4){ if($type==1){ /*join函數把數群組轉換為字串。。join() 函數是 implode() 函數的別名*/ $chars=join("",range(0,9));}elseif ($type==2) { /*array_merge函數合并數組*/ $chars=join("",array_merge(range("a","z"),range("A","Z")));}elseif($type==3){ $chars=join("",array_merge(range("a","z"),range("A","Z"),range(0,9)));} if($length>strlen($chars)){ exit("字串長度不夠");}/*打亂字串*/$chars=str_shuffle($chars);return substr($chars,0,$length); } ?>
總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。