亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

CodeIgniter框架驗證碼類庫文件怎么用

發布時間:2021-08-13 08:33:41 來源:億速云 閱讀:141 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“CodeIgniter框架驗證碼類庫文件怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“CodeIgniter框架驗證碼類庫文件怎么用”這篇文章吧。

在application/libraries建立Authcode.php文件,代碼如下:

<?php
class Authcode
{
 var $CI;
 var $fontPath;//字體路徑
 var $image;
 var $charLen   = 4; //生成幾位驗證碼
 var $arrChr   = array();//驗證碼字符
 var $width    = 83; //圖片寬
 var $height   = 24; //圖片高
 var $bgcolor   = "#ffffff"; //背景色
 var $showNoisePix  = true; //生成雜點
 var $noiseNumPix  = 80; //生成雜點數量
 var $showNoiseLine  = true; //生成雜線
 var $noiseNumLine  = 2; //生成雜線數量
 var $showBorder  = true; //邊框,當雜點、線一起作用的時候,邊框容易受干擾
 var $borderColor  = "#000000";
 function Authcode()
 {
  $this->CI = & get_instance();
  $this->fontPath = realpath(dirname(__FILE__) . '/fonts/'); //字體文件
  //$this->arrChr   = array_merge(range(1, 9) , range('A', 'Z'));//數字字母驗證碼
  //$this->arrChr   = range('A', 'Z');//純字母驗證碼
  $this->arrChr = range(0, 9);//純數字驗證碼
 }
 /**
  * 顯示驗證碼
  *
  */
 function show()
 {
  $this->image = imageCreate($this->width, $this->height);
  $this->back = $this->getColor($this->bgcolor);
  imageFilledRectangle($this->image, 0, 0, $this->width, $this->height, $this->back);
  $size = $this->width / $this->charLen - 4;
  if ($size > $this->height) {
   $size = $this->height;
  }
  $left = ($this->width - $this->charLen * ($size + $size / 10)) / $size + 5;
  $code = '';
  for($i = 0; $i < $this->charLen; $i ++) {
   $randKey = rand(0, count($this->arrChr) - 1);
   $randText = $this->arrChr[$randKey];
   $code .= $randText;
   $textColor = imageColorAllocate($this->image, rand(0, 100), rand(0, 100), rand(0, 100));
   $font = $this->fontPath . '/' . rand(1, 5) . ".ttf";
   $randsize = rand($size - $size / 10, $size + $size / 10);
   $location = $left + ($i * $size + $size / 10);
   @imagettftext($this->image, $randsize, rand(- 18, 18), $location, rand($size - $size / 10, $size + $size / 10) + 2, $textColor, $font, $randText);
  }
  if ($this->showNoisePix == true) {
   $this->setNoisePix();
  }
  if ($this->showNoiseLine == true) {
   $this->setNoiseLine();
  }
  if ($this->showBorder == true) {
   $this->borderColor = $this->getColor($this->borderColor);
   imageRectangle($this->image, 0, 0, $this->width - 1, $this->height - 1, $this->borderColor);
  }
  $this->CI->session->set_userdata('auth_code', $code);
  ob_clean();
  header("Content-type: image/jpeg");
  imagejpeg($this->image);
  imagedestroy($this->image);
 }
 /**
  * 顯示驗證碼的JS調用
  *
  */
 function showScript()
 {
  //顯示驗證碼
  echo "var img_src = '/imgauthcode/show/?';\n";
  echo "document.writeln('<img id=\"img_authcode\" src=\"' + img_src + Math.random() + '\" style=\"cursor:hand;\" onclick=\"this.src=img_src + Math.random();\" alt=\"點擊更換圖片\">');";
 }
 /**
  * 檢查驗證碼是否正確
  *
  * @param string $auth_code
  * @return bool
  */
 function check($auth_code = null)
 {
  return ($this->CI->session->userdata('auth_code') && $auth_code) ? ($this->CI->session->userdata('auth_code') === $auth_code) : false;
 }
 function getColor($color)
 {
  $color = eregi_replace("^#", "", $color);
  $r = $color[0] . $color[1];
  $r = hexdec($r);
  $b = $color[2] . $color[3];
  $b = hexdec($b);
  $g = $color[4] . $color[5];
  $g = hexdec($g);
  $color = imagecolorallocate($this->image, $r, $b, $g);
  return $color;
 }
 function setNoisePix()
 {
  for($i = 0; $i < $this->noiseNumPix; $i ++) {
   $randColor = imageColorAllocate($this->image, rand(0, 255), rand(0, 255), rand(0, 255));
   imageSetPixel($this->image, rand(0, $this->width), rand(0, $this->height), $randColor);
  }
 }
 function setNoiseLine()
 {
  for($i = 0; $i < $this->noiseNumLine; $i ++) {
   $randColor = imageColorAllocate($this->image, rand(0, 255), rand(0, 255), rand(0, 255));
   imageline($this->image, rand(1, $this->width), rand(1, $this->height), rand(1, $this->width), rand(1, $this->height), $randColor);
  }
 }
}

Authcode.php代碼結束

在Controller中,有個admin類,其中有兩個方法:

Class Admin extends CI_Controller{
 function __construct()
 {
  parent::__construct();
  $this->load->library('Authcode');
 }
function captcha(){
  if($_POST){
    if ($this->authcode->check($this->input->post('gd_pic'))) {
    echo "right";
   } else {
    echo '驗證碼不正確,請重新輸入';
   }
  }else{
   $this->load->view('demo');
  }
 }
 function show_captcha(){ //此方法用于顯示驗證碼圖片,歸一個view中的img的src調用
  $this->authcode->show();
 }
}

下面是在視圖view中創建一個demo.php了,代碼如下:

<?php echo form_open('c=admin&m=captcha');?>
<input type="text" name="gd_pic" />
<img src="<?php echo base_url('?c=admin&m=show_captcha');?>" ><br>
<input type="submit" name="submit" value="驗證" />
<?php echo form_close();?>

OK. 一切結束,終于正常運行了。

以上是“CodeIgniter框架驗證碼類庫文件怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

嘉善县| 通州区| 湟中县| 梁山县| 武鸣县| 六盘水市| 苗栗市| 无极县| 呼图壁县| 错那县| 佛冈县| 天门市| 龙海市| 通化县| 合阳县| 福建省| 嵊泗县| 巴青县| 宜兴市| 洛川县| 连江县| 贵港市| 博湖县| 河津市| 青冈县| 莆田市| 定远县| 大余县| 长垣县| 宾阳县| 湖北省| 天门市| 嘉荫县| 晋中市| 吉木乃县| 城固县| 永昌县| 榆中县| 南投县| 保靖县| 昌平区|