溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何實現(xiàn)驗證碼功能

發(fā)布時間:2021-07-01 09:24:09 來源:億速云 閱讀:133 作者:chen 欄目:開發(fā)技術

這篇文章主要介紹“php如何實現(xiàn)驗證碼功能”,在日常操作中,相信很多人在php如何實現(xiàn)驗證碼功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php如何實現(xiàn)驗證碼功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

驗證碼在表單實現(xiàn)越來越多了,但是用js的寫的驗證碼,總覺得不方便,所以學習了下php實現(xiàn)的驗證碼。

好吧,其實是沒有事情干,但是又不想浪費時間,所以學習了下php實現(xiàn)驗證碼。正所謂,技多不壓身。而且,也可以封裝成一個函數(shù),以后使用的時候也是很方便的,當然現(xiàn)在未封裝。
現(xiàn)在來說說簡單的純數(shù)字驗證碼吧。
如果是初學者,建議按照我代碼的注釋 //數(shù)字  一步步來。最簡單的方法,還是把整個代碼復制走了。
新建一個captcha.php:

<?php
 //10>設置session,必須處于腳本最頂部
 session_start();

 $image = imagecreatetruecolor(100, 30);  //1>設置驗證碼圖片大小的函數(shù)
 //5>設置驗證碼顏色 imagecolorallocate(int im, int red, int green, int blue);
 $bgcolor = imagecolorallocate($image,255,255,255); //#ffffff
 //6>區(qū)域填充 int imagefill(int im, int x, int y, int col) (x,y) 所在的區(qū)域著色,col 表示欲涂上的顏色
 imagefill($image, 0, 0, $bgcolor);
 //10>設置變量
 $captcha_code = "";
 //7>生成隨機數(shù)字
 for($i=0;$i<4;$i++){
  //設置字體大小
  $fontsize = 6;  
  //設置字體顏色,隨機顏色
  $fontcolor = imagecolorallocate($image, rand(0,120),rand(0,120), rand(0,120));   //0-120深顏色
  //設置數(shù)字
  $fontcontent = rand(0,9);
  //10>.=連續(xù)定義變量
  $captcha_code .= $fontcontent; 
  //設置坐標
  $x = ($i*100/4)+rand(5,10);
  $y = rand(5,10);

  imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
 }
 //10>存到session
 $_SESSION['authcode'] = $captcha_code;
 //8>增加干擾元素,設置雪花點
 for($i=0;$i<200;$i++){
  //設置點的顏色,50-200顏色比數(shù)字淺,不干擾閱讀
  $pointcolor = imagecolorallocate($image,rand(50,200), rand(50,200), rand(50,200));  
  //imagesetpixel — 畫一個單一像素
  imagesetpixel($image, rand(1,99), rand(1,29), $pointcolor);
 }
 //9>增加干擾元素,設置橫線
 for($i=0;$i<4;$i++){
  //設置線的顏色
  $linecolor = imagecolorallocate($image,rand(80,220), rand(80,220),rand(80,220));
  //設置線,兩點一線
  imageline($image,rand(1,99), rand(1,29),rand(1,99), rand(1,29),$linecolor);
 }

 //2>設置頭部,image/png
 header('Content-Type: image/png');
 //3>imagepng() 建立png圖形函數(shù)
 imagepng($image);
 //4>imagedestroy() 結(jié)束圖形函數(shù) 銷毀$image
 imagedestroy($image);

接著就是靜態(tài)頁的代碼了:index.html

<!doctype html>
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>確認驗證碼</title>
 </head>
 <body>
  <form method="post" action="./form.php">
   <p>驗證碼: <img id="captcha_img" border='1' src='./captcha.php?r=<?php echo rand(); ?>'  />
    <a href="javascript:void(0)" onclick="document.getElementById('captcha_img').src='./captcha.php?r='+Math.random()">換一個?</a>
   </p>
   <P>請輸入驗證碼:<input type="text" name='authcode' value=''/></p>
   <p><input type='submit' value='提交' style='padding:6px 5px;'/></p> 
 </body>
</html>

從index.html可以看到,提交的表單是到form.php的,所以還要有一個判斷的form.php代碼:

<?php
  header("Content-Type:text/html;charset=utf-8");      //設置頭部信息
  //isset()檢測變量是否設置
  if(isset($_REQUEST['authcode'])){
    session_start();
    //strtolower()小寫函數(shù)
    if(strtolower($_REQUEST['authcode'])== $_SESSION['authcode']){
      //跳轉(zhuǎn)頁面
      echo "<script language=\"javascript\">";
      echo "document.location=\"./form.php\"";
      echo "</script>";
    }else{
      //提示以及跳轉(zhuǎn)頁面
      echo "<script language=\"javascript\">";
      echo "alert('輸入錯誤!');";
      echo "document.location=\"./form.php\"";
      echo "</script>";
    }
    exit();
  }

顯示頁面如下:

php如何實現(xiàn)驗證碼功能

那么,純數(shù)字的實現(xiàn)了,數(shù)字加英文的也應該不難了,廢話不多說了,拉代碼吧。

<?php
 //10>設置session,必須處于腳本最頂部
 session_start();

 $image = imagecreatetruecolor(100, 30);  //1>設置驗證碼圖片大小的函數(shù)
 //5>設置驗證碼顏色 imagecolorallocate(int im, int red, int green, int blue);
 $bgcolor = imagecolorallocate($image,255,255,255); //#ffffff
 //6>區(qū)域填充 int imagefill(int im, int x, int y, int col) (x,y) 所在的區(qū)域著色,col 表示欲涂上的顏色
 imagefill($image, 0, 0, $bgcolor);
 //10>設置變量
 $captcha_code = "";
 //7>生成隨機的字母和數(shù)字
 for($i=0;$i<4;$i++){
  //設置字體大小
  $fontsize = 8;  
  //設置字體顏色,隨機顏色
  $fontcolor = imagecolorallocate($image, rand(0,120),rand(0,120), rand(0,120));   //0-120深顏色
  //設置需要隨機取的值,去掉容易出錯的值如0和o
  $data ='abcdefghigkmnpqrstuvwxy3456789';
  //取出值,字符串截取方法 strlen獲取字符串長度
  $fontcontent = substr($data, rand(0,strlen($data)),1);
  //10>.=連續(xù)定義變量
  $captcha_code .= $fontcontent;  
  //設置坐標
  $x = ($i*100/4)+rand(5,10);
  $y = rand(5,10);

  imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
 }
 //10>存到session
 $_SESSION['authcode'] = $captcha_code;
 //8>增加干擾元素,設置雪花點
 for($i=0;$i<200;$i++){
  //設置點的顏色,50-200顏色比數(shù)字淺,不干擾閱讀
  $pointcolor = imagecolorallocate($image,rand(50,200), rand(50,200), rand(50,200));  
  //imagesetpixel — 畫一個單一像素
  imagesetpixel($image, rand(1,99), rand(1,29), $pointcolor);
 }
 //9>增加干擾元素,設置橫線
 for($i=0;$i<4;$i++){
  //設置線的顏色
  $linecolor = imagecolorallocate($image,rand(80,220), rand(80,220),rand(80,220));
  //設置線,兩點一線
  imageline($image,rand(1,99), rand(1,29),rand(1,99), rand(1,29),$linecolor);
 }

 //2>設置頭部,image/png
 header('Content-Type: image/png');
 //3>imagepng() 建立png圖形函數(shù)
 imagepng($image);
 //4>imagedestroy() 結(jié)束圖形函數(shù) 銷毀$image
 imagedestroy($image);

其他的兩個頁面,不許要修改。

php如何實現(xiàn)驗證碼功能

一般而言,現(xiàn)在就已經(jīng)夠用了。但是就像動漫一樣,總會有番外。
那么,我們來個漢字的番外吧。其實我也準備將漢字的驗證碼放到我的畢業(yè)設計里面,雖然現(xiàn)在很流行滑動驗證碼,但是本人畢竟不是專門學習js的。

<?php
 //11>設置session,必須處于腳本最頂部
 session_start();

 //1>設置驗證碼圖片大小的函數(shù)
 $image = imagecreatetruecolor(200, 60);  
 //5>設置驗證碼顏色 imagecolorallocate(int im, int red, int green, int blue);
 $bgcolor = imagecolorallocate($image,255,255,255); //#ffffff
 //6>區(qū)域填充 int imagefill(int im, int x, int y, int col) (x,y) 所在的區(qū)域著色,col 表示欲涂上的顏色
 imagefill($image, 0, 0, $bgcolor);
 //7>設置ttf字體
 $fontface = 'FZYTK.TTF';
 //7>設置字庫,實現(xiàn)簡單的數(shù)字儲備
 $str='天地不仁以萬物為芻狗圣人不仁以百姓為芻狗這句經(jīng)常出現(xiàn)在控訴暴君暴政上地殘暴不仁把萬物都當成低賤的豬狗來看待而那些高高在上的所謂圣人們也沒兩樣還不是把我們老百姓也當成豬狗不如的東西但實在正取的解讀是地不情感用事對萬物一視同仁圣人不情感用事對百姓一視同仁執(zhí)子之手與子偕老當男女主人公含情脈脈看著對方說了句執(zhí)子之手與子偕老女方淚眼朦朧含羞地回一句討厭啦這樣的情節(jié)我們是不是見過很多但是我們來看看這句的原句死生契闊與子成說執(zhí)子之手與子偕老于嗟闊兮不我活兮于嗟洵兮不我信兮意思是說戰(zhàn)士之間的約定說要一起死現(xiàn)在和我約定的人都走了我怎么活啊赤裸裸的兄弟江湖戰(zhàn)友友誼啊形容好基友的基情比男女之間的愛情要合適很多吧';
 //str_split()切割字符串為一個數(shù)組,一個中文在utf_8為3個字符
 $strdb = str_split($str,3); 
 //>11
 $captcha_code = '';
 //8>生成隨機的漢子
 for($i=0;$i<4;$i++){
  //設置字體顏色,隨機顏色
  $fontcolor = imagecolorallocate($image, rand(0,120),rand(0,120), rand(0,120));   //0-120深顏色
  //隨機選取中文
  $in = rand(0,count($strdb));
  $cn = $strdb[$in];
  //將中文記錄到將保存到session的字符串中
  $captcha_code .= $cn;
  /*imagettftext (resource $image ,float $size ,float $angle ,int $x ,int $y,int $color,
  string $fontfile ,string $text ) 幕布 ,尺寸,角度,坐標,顏色,字體路徑,文本字符串
  mt_rand()生成更好的隨機數(shù),比rand()快四倍*/
  imagettftext($image, mt_rand(20,24),mt_rand(-60,60),(40*$i+20),mt_rand(30,35),$fontcolor,$fontface,$cn);
 }
 //11>存到session
 $_SESSION['authcode'] = $captcha_code;
 //9>增加干擾元素,設置點
 for($i=0;$i<200;$i++){
  //設置點的顏色,50-200顏色比數(shù)字淺,不干擾閱讀
  $pointcolor = imagecolorallocate($image,rand(50,200), rand(50,200), rand(50,200));  
  //imagesetpixel — 畫一個單一像素
  imagesetpixel($image, rand(1,199), rand(1,59), $pointcolor);
 }
 //10>增加干擾元素,設置線
 for($i=0;$i<4;$i++){
  //設置線的顏色
  $linecolor = imagecolorallocate($image,rand(80,220), rand(80,220),rand(80,220));
  //設置線,兩點一線
  imageline($image,rand(1,199), rand(1,59),rand(1,199), rand(1,59),$linecolor);
 }

 //2>設置頭部,image/png
 header('Content-Type: image/png');
 //3>imagepng() 建立png圖形函數(shù)
 imagepng($image);
 //4>imagedestroy() 結(jié)束圖形函數(shù) 銷毀$image
 imagedestroy($image);

其他的頁面也是不需要修改的。

效果圖如下:

php如何實現(xiàn)驗證碼功能

以上就是php實現(xiàn)的三種驗證碼:純數(shù)字驗證碼,數(shù)字加英文驗證碼,還有一種漢字驗證碼,希望對大家熟練掌握php驗證碼有所幫助。

到此,關于“php如何實現(xiàn)驗證碼功能”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI