一款PHP驗證碼的精心打造

來源:互聯網
上載者:User
比如你用PHP開發了網站的會員登入頁面,當然要實現驗證碼,驗證碼的圖片可以是靜態,也可以是動態,文字可以是漢字,英文,法文,日文等等,可以隨便替換。如驗證碼圖片:

當然可以修改,只是要匯入PHP原始碼才可以實現

代碼如下:

01.

02. class Imagecode{

03. private $width ;

04. private $height;

05. private $counts;

06. private $distrubcode;

07. private $fonturl;

08. private $session;

09. function __construct($width = 120,$height = 30,$counts = 5,$distrubcode="1235467890qwertyuipkjhgfdaszxcvbnm",$fonturl="C:\Windows\Fonts\TektonPro-BoldCond.otf"){

10. $this->width=$width;

11. $this->height=$height;

12. $this->counts=$counts;

13. $this->distrubcode=$distrubcode;

14. $this->fonturl=$fonturl;

15. $this->session=$this->sessioncode();

16. session_start();

17. $_SESSION['code']=$this->session;

18. }

19.

20. function imageout(){

21. $im=$this->createimagesource();

22. $this->setbackgroundcolor($im);

23. $this->set_code($im);

24. $this->setdistrubecode($im);

25. ImageGIF($im);

26. ImageDestroy($im);

27. }

28.

29. private function createimagesource(){

30. return imagecreate($this->width,$this->height);

31. }

32. private function setbackgroundcolor($im){

33. $bgcolor = ImageColorAllocate($im, rand(200,255),rand(200,255),rand(200,255));//±³¾°ÑÕÉ«

34. imagefill($im,0,0,$bgcolor);

35. }

36. private function setdistrubecode($im){

37. $count_h=$this->height;

38. $cou=floor($count_h*2);

39. for($i=0;$i<$cou;$i++){

40. $x=rand(0,$this->width);

41. $y=rand(0,$this->height);

42. $jiaodu=rand(0,360);

43. $fontsize=rand(8,15);

44. $fonturl=$this->fonturl;

45. $originalcode = $this->distrubcode;

46. $countdistrub = strlen($originalcode);

47. $dscode = $originalcode[rand(0,$countdistrub-1)];

48. $color = ImageColorAllocate($im, rand(40,140),rand(40,140),rand(40,140));

49. imagettftext($im,$fontsize,$jiaodu,$x,$y,$color,$fonturl,$dscode);

50.

51. }

52. }

53. private function set_code($im){

54. $width=$this->width;

55. $counts=$this->counts;

56. $height=$this->height;

57. $scode=$this->session;

58. $y=floor($height/2)+floor($height/4);

59. $fontsize=rand(30,35);

60. $fonturl="C:\Windows\Fonts\AdobeGothicStd-Bold.otf";//$this->fonturl;

61.

62. $counts=$this->counts;

63. for($i=0;$i<$counts;$i++){

64. $char=$scode[$i];

65. $x=floor($width/$counts)*$i+8;

66. $jiaodu=rand(-20,30);

67. $color = ImageColorAllocate($im,rand(0,50),rand(50,100),rand(100,140));

68. imagettftext($im,$fontsize,$jiaodu,$x,$y,$color,$fonturl,$char);

69. }

70.

71.

72.

73. }

74. private function sessioncode(){

75. $originalcode = $this->distrubcode;

76. $countdistrub = strlen($originalcode);

77. $_dscode = "";

78. $counts=$this->counts;

79. for($j=0;$j<$counts;$j++){

80. $dscode = $originalcode[rand(0,$countdistrub-1)];

81. $_dscode.=$dscode;

82. }

83. return $_dscode;

84.

85. }

86. }

87. Header("Content-type: image/GIF");

88. $imagecode=new Imagecode(160,50);

89. $imagecode->imageout();


編寫完畢,用Dreamweaver編輯器 開啟,上傳OK。

do happy!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.