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

PHP 數字驗證碼的例子

編輯:關於PHP編程

在php中實現驗證碼還是很方便的,關鍵點在於掌握php gd庫與session的用法。

縱觀網上php 生成驗證碼的例子,無不是php gd庫與session相結合,並利用php 生成隨機數的方法來完成。

PHP驗證碼,可以分為很多種,包括 php 圖片驗證碼,php 隨機驗證碼,以及php 中文驗證碼等,根據不同的應用場合來使用不同的驗證碼。

這裡分享一個php數字驗證碼,供大家參考。


1,數字驗證碼
  1. /* 
  2. *Filename:authpage.php 
  3. */  
  4. session_start();  
  5. //srand((double)microtime()*1000000);  
  6. $authnum=$_SESSION['authnum'];  
  7. //驗證用戶輸入是否和驗證碼一致  
  8. if(isset($_POST['authinput']))  
  9. {  
  10. if(strcmp($_POST['authinput'],$_SESSION['authnum'])==0)  
  11. echo"驗證成功!";  
  12. else  
  13. echo"驗證失敗!";  
  14. }  
  15.   
  16.   
  17. //生成新的四位整數驗證碼  
  18.   
  19.   
  20. //while(($authnum=rand()%10000)<1000);  
  21. ?>  
  22. <formaction=test4.phpmethod=post>  
  23. <table>  
  24. 請輸入驗證碼:<inputtype=textname=authinput><br>  
  25. <inputtype=submitname="驗證"value="提交驗證碼">  
  26. <inputtype=hiddenname=authnumvalue=<?echo$authnum;?>>  
  27. <imgsrc=authimg.php?authnum=<?echo$authnum;?>>  
  28. </table>  
  29. </form>  
2,authimg.php
  1. <?php  
  2. //生成驗證碼圖片  
  3. Header("Content-type:image/PNG");  
  4. srand((double)microtime()*1000000);//播下一個生成隨機數字的種子,以方便下面隨機數生成的使用  
  5.   
  6. session_start();//將隨機數存入session中  
  7. $_SESSION['authnum']="";  
  8. $im=imagecreate(62,20);//制定圖片背景大小  
  9.   
  10. $black=ImageColorAllocate($im,0,0,0);//設定三種顏色  
  11. $white=ImageColorAllocate($im,255,255,255);  
  12. $gray=ImageColorAllocate($im,200,200,200);  
  13.   
  14. imagefill($im,0,0,$gray);//采用區域填充法,設定(0,0)  
  15.   
  16. while(($authnum=rand()%100000)<10000);  
  17. //將四位整數驗證碼繪入圖片  
  18. // www.jbxue.com  
  19. $_SESSION['authnum']=$authnum;  
  20. imagestring($im,5,10,3,$authnum,$black);  
  21. //用col顏色將字符串s畫到image所代表的圖像的x,y座標處(圖像的左上角為0,0)。  
  22. //如果font是1,2,3,4或5,則使用內置字體  
  23.   
  24. for($i=0;$i<200;$i++)//加入干擾象素  
  25. {  
  26. $randcolor=ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));  
  27. imagesetpixel($im,rand()%70,rand()%30,$randcolor);  
  28. }  
  29. ImagePNG($im);  
  30. ImageDestroy($im);  
  31. ?> 

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