使用PHP製作乙個驗證碼

2021-08-02 04:50:27 字數 476 閱讀 2899

* 驗證碼

* @param   int $type  驗證碼型別  1純數字  2小寫字母  3大寫字母  4 大小寫字母混合  5 數字和字母混合

* @param   int $length 驗證碼長度

* @param   int $width   驗證碼影象寬度

* @param   int $height  驗證碼影象高度

*/function verifycode($type=1,$length=4,$width=100,$height=40)

//寫線干擾項

for($n=1;$n<=20;$n++)

//第三步:輸出影象

header('content-type:image/png');

imagepng($img);

//第四步:銷毀影象資源,釋放記憶體

imagedestroy($img);

}

php 驗證碼製作

直接上 function buildrandomstring type 1,length 4 else if type 2 else if type 3 if length strlen chars 隨意打亂字串 chars str shuffle chars return substr chars...

php製作驗證碼

session start 型別 type gif 的尺寸 width 40 height 16 header content type image type srand double microtime 1000000 生成字元的個數 randval randstr 4,if type gif f...

php製作驗證碼

用php製作乙個一串驗證碼很簡單,主要需要用到一下函式,到手冊上查詢下就知道了,需要注意imagettftext,需要乙個字型檔案,我在win7控制面板字型裡拷貝出來的.這個函式比imagestring 好一點是因為,可以改變字型,和字型大小,imagestring只提供內建的字型大小1,2,3,4...