91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用php怎么編寫一個加減法驗證碼功能

發布時間:2021-01-16 11:24:17 來源:億速云 閱讀:216 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用php怎么編寫一個加減法驗證碼功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

 代碼如下:

<?php
/*圖片驗證碼文件,加減計算方式*/

class ImageCode{

 private $Jiashu  = 0;        //加數或者減數
 private $JianShu = 0;        //被加數或者被減數
 private $YunSuan = '';       //運算符
 private $DeShu   = 0;        //得數
 private $String  = '';       //字符串樣式
 private $Img;                //圖片對象
 private $Width   = 100;      //圖片寬度
 private $Height  = 50;       //圖片高度
 private $Ttf     = 'Num.ttf';//字體文件
 private $Session = 'code';   //Session變量

 private function JiaShu(){
  header('Content-type:image/png');
  $this -> Jiashu  = rand(1, 10);
  $this -> JianShu = rand(1, 10);
  $this -> YunSuan= $this -> Jiashu > $this -> JianShu ? '-' : '+';
  $this -> DeShu   = $this -> Jiashu > $this -> JianShu ? $this -> Jiashu - $this -> JianShu : $this -> Jiashu + $this -> JianShu;
 }

 public function Show( $W = 100, $H = 50, $T = 'Num.ttf', $Code = 'code' ){
  $this -> JiaShu();
  $this -> String = $this -> Jiashu . $this -> YunSuan . $this -> JianShu . '= ? ';
  $this -> Width  = $W;
  $this -> Height = $H;
  $this -> Ttf    = $T;
  $this -> Session= $Code;
  session_start();
  $_SESSION[$this -> Session] = $this -> DeShu;
  $this -> Images();
 }

 private function Images(){
  $this -> Img = imagecreate($this -> Width, $this -> Height);
  $background_color = imagecolorallocate ($this -> Img, 255, 255, 255);
  imagecolortransparent($this -> Img, $background_color);
        imagettftext($this -> Img, 14, 0, 1, 20, imagecolorallocate ($this -> Img, 0, 0, 0), $this -> Ttf, $this -> String );
  $this -> EchoImages();
 }

 private function EchoImages(){
  imagepng($this -> Img);
  imagedestroy($this -> Img);
 }

}

$ImageCode = new ImageCode;
$ImageCode -> Show(130, 35, 'Num.ttf', 'code');

關于使用php怎么編寫一個加減法驗證碼功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

php
AI

平潭县| 富蕴县| 通江县| 澄江县| 新密市| 忻州市| 始兴县| 旅游| 寿宁县| 甘肃省| 望城县| 长沙市| 天峨县| 南涧| 景东| 青海省| 祥云县| 镇远县| 玉山县| 南和县| 岳阳县| 西盟| 宿州市| 靖边县| 云浮市| 辽阳县| 临颍县| 墨脱县| 九江市| 长宁县| 克拉玛依市| 丹棱县| 富平县| 大姚县| 安康市| 云林县| 临安市| 泰来县| 新余市| 鄂托克前旗| 竹山县|