程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP驗證碼實現代碼簡單示例

PHP驗證碼實現代碼簡單示例

編輯:關於PHP編程

PHP驗證碼我有講過很多的實例了,下面我轉一朋友的不錯的PHP驗證碼程序,相當的簡單各位朋友可參考。

最近無聊沒事做,開始做一些php的分享,代碼都比較簡單,但比較實用。

這是四年前寫的,幾行代碼實現四位隨機數字的php驗證碼功能。

 代碼如下 復制代碼

session_start();
header("Content-type: image/jpeg");
$img = imagecreate(50,20);
$white = imagecolorallocate($img,211,213,193);
imagefill($img,0,0,$white);<BR <p>for($i=0;$i<4;$i++){
$r[$i] = rand(0,9);
}
$_SESSION['valid'] = implode("",$r); //在這裡寫入到session可做後期驗證
for($i=0;$i<4;$i++){

if(rand(0,9)%2==0){
imagechar($img,5,($i+1)*8,4,$r[$i],imagecolorallocate($img,rand(0,150),rand(0,150),rand(0,150)));
}else{
imagechar($img,5,($i+1)*8,2,$r[$i],imagecolorallocate($img,rand(0,150),rand(0,150),rand(0,150)));
}

}
imagejpeg($img);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved