溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用php怎么實(shí)現(xiàn)一個(gè)算術(shù)驗(yàn)證碼功能

發(fā)布時(shí)間:2021-04-20 17:59:11 來(lái)源:億速云 閱讀:187 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

本篇文章為大家展示了使用php怎么實(shí)現(xiàn)一個(gè)算術(shù)驗(yàn)證碼功能,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

php有什么用

php是一個(gè)嵌套的縮寫名稱,是英文超級(jí)文本預(yù)處理語(yǔ)言,它的語(yǔ)法混合了C、Java、Perl以及php自創(chuàng)新的語(yǔ)法,主要用來(lái)做網(wǎng)站開(kāi)發(fā),許多小型網(wǎng)站都用php開(kāi)發(fā),因?yàn)閜hp是開(kāi)源的,從而使得php經(jīng)久不衰。

<?php
/**
 * @param int $width 寬度,默認(rèn)為120
 * @param int $height 高度,默認(rèn)為50
 * @param int $fontSize 字體的大小
 * @return 圖片資源
 */
function arithmeticCode($width=120,$height=50,$fontSize=20){
  //開(kāi)啟session
  session_start();
  //創(chuàng)建畫布
  $img = imagecreatetruecolor($width,$height);
  //分配顏色
  $color = imagecolorallocate($img,255,255,255);
  //填充顏色
  imagefill($img,0,0,$color);

  //干擾點(diǎn)
  for ($i = 0;$i < 500;$i++){
    $pixColor = imagecolorallocate($img,mt_rand(100,200),mt_rand(100,200),mt_rand(100,200));
    imagesetpixel($img,mt_rand(0,$width),mt_rand(0,$height),$pixColor);
  }
  //干擾線
  for ($i = 0;$i < 4;$i++){
    $lineColor = imagecolorallocate($img,mt_rand(0,120),mt_rand(0,120),mt_rand(0,120));
    imageline($img,mt_rand(0,$width),mt_rand(0,$height),mt_rand(0,$width),mt_rand(0,$height),$lineColor);
  }

  //定義一個(gè)數(shù)組存放運(yùn)算符號(hào)
  $arr = ['+','-','*'];
  //計(jì)算數(shù)組的長(zhǎng)度
  $len = count($arr);
  //定義一個(gè)1到20的數(shù)組
  $num = range(1,20);
  $numLen = count($num);
  //定義一個(gè)空數(shù)組來(lái)存放隨機(jī)取得的驗(yàn)證碼
  $code = [];
  for ($i = 0;$i < $len;$i++) {
    if ($i == 1) {
      $code[] = $arr[mt_rand(0,$len-1)];
    }else {
      $code[] = $num[mt_rand(0,$numLen-1)];
    }
  }

  $str = implode($code);//將數(shù)組轉(zhuǎn)為字符串
  $textColor = imagecolorallocate($img,mt_rand(100,200),mt_rand(100,200),mt_rand(100,200));
  $fontAngle = 0;
  $x = ($width - $fontSize*3)/2;
  $y = ($height - $fontSize) / 2 + $fontSize;
  imagettftext($img,$fontSize,$fontAngle,$x,$y,$textColor,"./img/msyh.ttc",$str);

  $res = getRes($code);


  //將函數(shù)存放在session中
  $_SESSION['res'] = $res;

  //輸出圖片
  header("content-type:image/png");
  imagepng($img);
}


/**
 * @param $arr 一個(gè)包含運(yùn)算符號(hào)的數(shù)組
 * @return 返回一個(gè)運(yùn)算結(jié)果
 */
function getRes($arr) {
  $sum = 0;
  //判斷數(shù)組元素下標(biāo)為1的運(yùn)算符號(hào)是什么
  switch ($arr[1]){
    case '+':
      $sum = $arr[0] + $arr[2];
      break;
    case '-':
      $sum = $arr[0] - $arr[2];
      break;
    case '*':
      $sum = $arr[0] * $arr[2];
      break;
  }

  return $sum;
}

//調(diào)用函數(shù)
arithmeticCode(100,40,18);

html的部分代碼

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport"
     content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    img {
      position: relative;
      top: 20px;
    }
  </style>
</head>
<body>
<form action="test.php">
  驗(yàn)證碼 <input type="text" name="code">
  <img src="./demo5.php" alt="點(diǎn)擊刷新">
  <br>
  <button>提交</button>
</form>
</body>
</html>
<script>
  //實(shí)現(xiàn)點(diǎn)擊圖片刷新驗(yàn)證碼的功能
  var img = document.querySelector("img");
  img.onclick = function () {
    this.src = this.src+"?m="+Math.random();
  }
</script>

test.php的測(cè)試

<?php
session_start();
$res = $_SESSION['res'];
$value = $_GET['code'];
if ($res == $value) {
  echo "test success";
}else{
  echo "test fail";
}

上述內(nèi)容就是使用php怎么實(shí)現(xiàn)一個(gè)算術(shù)驗(yàn)證碼功能,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

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

php
AI