中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用php怎么編寫一個圖片驗證碼功能

發布時間:2020-12-17 15:21:55 來源:億速云 閱讀:183 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關使用php怎么編寫一個圖片驗證碼功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

演示5種驗證碼,并介紹生成驗證碼的函數。PHP生成驗證碼的原理:通過GD庫,生成一張帶驗證碼的圖片,并將驗證碼保存在Session中。

使用php怎么編寫一個圖片驗證碼功能

1、HTML
5中驗證碼HTML代碼如下:

<div class="demo">
 <h4>1、數字驗證碼</h4>
 <p>驗證碼:<input type="text" class="input" id="code_num" name="code_num" maxlength="4" /> <img src="code_num.php" id="getcode_num" title="看不清,點擊換一張" align="absmiddle" /></p>
 <p><input type="button" class="btn" id="chk_num" value="提交" /></p>
 </div>
 <div class="demo">
 <h4>2、數字+字母驗證碼</h4>
 <p>驗證碼:<input type="text" class="input" id="code_char" maxlength="4" /> <img src="code_char.php" id="getcode_char" title="看不清,點擊換一張" align="absmiddle" /></p>
 <p><input type="button" class="btn" id="chk_char" value="提交" /></p>
 </div>
 <div class="demo">
 <h4>3、中文驗證碼</h4>
 <p>驗證碼:<input type="text" class="input" id="code_zh" maxlength="4" /> <img src="code_zh.php" id="getcode_zh" title="看不清,點擊換一張" align="absmiddle" /></p>
 <p><input type="button" class="btn" id="chk_zh" value="提交" /></p>
 </div>
 <div class="demo">
 <h4>4、仿google驗證碼</h4>
 <p>驗證碼:<input type="text" class="input" id="code_gg" maxlength="4" /> <img src="code_gg.php" id="getcode_gg" title="看不清,點擊換一張" align="absmiddle" /></p>
 <p><input type="button" class="btn" id="chk_gg" value="提交" /></p>
 </div>
 <div class="demo">
 <h4>5、算術驗證碼</h4>
 <p>驗證碼:<input type="text" class="input" id="code_math" maxlength="4" /> <img src="code_math.php" id="getcode_math" title="看不清,點擊換一張" align="absmiddle" /></p>
 <p><input type="button" class="btn" id="chk_math" value="提交" /></p>
</div>

2、js驗證

$(function() {
 $("#getcode_num").click(function() { //數字驗證
  $(this).attr("src", 'code_num.php?' + Math.random());
 });
 $("#chk_num").click(function() {
  var code_num = $("#code_num").val();
  $.post("chk_code.php?act=num", {
   code: code_num
  },
  function(msg) {
   if (msg == 1) {
    alert("驗證碼正確!");
   } else {
    alert("驗證碼錯誤!");
   }
  });
 });
 //數字+字母驗證
 $("#getcode_char").click(function() {
  $(this).attr("src", 'code_char.php?' + Math.random());
 });
 $("#chk_char").click(function() {
  var code_char = $("#code_char").val();
  $.post("chk_code.php?act=char", {
   code: code_char
  },
  function(msg) {
   if (msg == 1) {
    alert("驗證碼正確!");
   } else {
    alert("驗證碼錯誤!");
   }
  });
 });
 //中文驗證碼
 $("#getcode_zh").click(function() {
  $(this).attr("src", 'code_zh.php?' + Math.random());
 });
 $("#chk_zh").click(function() {
  var code_zh = escape($("#code_zh").val());
  $.post("chk_code.php?act=zh", {
   code: code_zh
  },
  function(msg) {
   if (msg == 1) {
    alert("驗證碼正確!");
   } else {
    alert("驗證碼錯誤!");
   }
  });
 });
 //google驗證
 $("#getcode_gg").click(function() {
  $(this).attr("src", 'code_gg.php?' + Math.random());
 });
 $("#chk_gg").click(function() {
  var code_gg = $("#code_gg").val();
  $.post("chk_code.php?act=gg", {
   code: code_gg
  },
  function(msg) {
   if (msg == 1) {
    alert("驗證碼正確!");
   } else {
    alert("驗證碼錯誤!");
   }
  });
 });
 //算術驗證
 $("#getcode_math").click(function() {
  $(this).attr("src", 'code_math.php?' + Math.random());
 });
 $("#chk_math").click(function() {
  var code_math = $("#code_math").val();
  $.post("chk_code.php?act=math", {
   code: code_math
  },
  function(msg) {
   if (msg == 1) {
    alert("驗證碼正確!");
   } else {
    alert("驗證碼錯誤!");
   }
  });
 });
});

3、PHP生成驗證碼

session_start();
getCode(4,60,20);

function getCode($num,$w,$h) {
 $code = "";
 for ($i = 0; $i < $num; $i++) {
  $code .= rand(0, 9);
 }
 //4位驗證碼也可以用rand(1000,9999)直接生成
 //將生成的驗證碼寫入session,備驗證時用
 $_SESSION["helloweba_num"] = $code;
 //創建圖片,定義顏色值
 header("Content-type: image/PNG");
 $im = imagecreate($w, $h);
 $black = imagecolorallocate($im, 0, 0, 0);
 $gray = imagecolorallocate($im, 200, 200, 200);
 $bgcolor = imagecolorallocate($im, 255, 255, 255);
 //填充背景
 imagefill($im, 0, 0, $gray);

 //畫邊框
 imagerectangle($im, 0, 0, $w-1, $h-1, $black);

 //隨機繪制兩條虛線,起干擾作用
 $style = array ($black,$black,$black,$black,$black,
  $gray,$gray,$gray,$gray,$gray
 );
 imagesetstyle($im, $style);
 $y1 = rand(0, $h);
 $y2 = rand(0, $h);
 $y3 = rand(0, $h);
 $y4 = rand(0, $h);
 imageline($im, 0, $y1, $w, $y3, IMG_COLOR_STYLED);
 imageline($im, 0, $y2, $w, $y4, IMG_COLOR_STYLED);

 //在畫布上隨機生成大量黑點,起干擾作用;
 for ($i = 0; $i < 80; $i++) {
  imagesetpixel($im, rand(0, $w), rand(0, $h), $black);
 }
 //將數字隨機顯示在畫布上,字符的水平間距和位置都按一定波動范圍隨機生成
 $strx = rand(3, 8);
 for ($i = 0; $i < $num; $i++) {
  $strpos = rand(1, 6);
  imagestring($im, 5, $strx, $strpos, substr($code, $i, 1), $black);
  $strx += rand(8, 12);
 }
 imagepng($im);//輸出圖片
 imagedestroy($im);//釋放圖片所占內存
}

以上就是使用php怎么編寫一個圖片驗證碼功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

贵德县| 灯塔市| 化州市| 庐江县| 洪江市| 绵竹市| 安陆市| 阿拉善左旗| 东辽县| 习水县| 东乌珠穆沁旗| 清河县| 云浮市| 陵水| 东丰县| 海口市| 蒲江县| 比如县| 和田县| 合水县| 清涧县| 安龙县| 晋宁县| 会理县| 聂荣县| 甘孜县| 德庆县| 永泰县| 北安市| 台北县| 扶绥县| 文水县| 毕节市| 铁岭市| 大荔县| 竹溪县| 上虞市| 江津市| 乐亭县| 宜昌市| 陆川县|