PHP實現適用於自訂的驗證碼類,php驗證碼_PHP教程

來源:互聯網
上載者:User

PHP實現適用於自訂的驗證碼類,php驗證碼


本文執行個體為大家分享了PHP驗證碼類,利用對象來實現的驗證碼類,供大家參考,具體內容如下

<?php /*  * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */Class Image{   private $img; public $width = 85; public $height = 25; public $code; public $code_len = 4; public $code_str = "329832983DSDSKDSLKQWEWQ2lkfDSFSDjfdsfdsjwlkfj93290KFDSKJFDSOIDSLK"; public $bg_color = '#DCDCDC'; public $font_size = 16; public $font = 'font.ttf'; public $font_color = '#000000';   //建立驗證碼餓字元創 public function create_code(){  $code = '';  for( $i=0;$i<$this->code_len;$i++ ){   $code .= $this->code_str[mt_rand(0, strlen($this->code_str)-1)]; }  return $this->code = $code; }   //輸出映像 public function getImage(){  $w = $this->width;  $h = $this->height;  $bg_color = $this->bg_color;  $img = imagecreatetruecolor($w, $h);  $bg_color = imagecolorallocate($img,  hexdec(substr($bg_color, 1,2)), hexdec(substr($bg_color, 3,2)), hexdec(substr($bg_color, 5,2))); imagefill($img, 0, 0, $bg_color);  $this->img = $img;  $this->create_font();  $this->create_pix(); $this->show_code(); }   //寫入驗證碼 public function create_font(){  $this->create_code();  $color = $this->font_color;  $font_color = imagecolorallocate($this->img, hexdec(substr($color,1,2)), hexdec(substr($color, 3,2)), hexdec(substr($color,5,2)));  $x = $this->width/$this->code_len;  for( $i=0;$i<$this->code_len;$i++ ){   $txt_color = imagecolorallocate($this->img, mt_rand(0,100), mt_rand(0, 150), mt_rand(0, 200));   imagettftext($this->img, $this->font_size, mt_rand(-30, 30), $x*$i+mt_rand(3, 6), mt_rand($this->height/1.2, $this->height), $txt_color, $this->font , $this->code[$i]);    //imagestring($this->img, $this->font_size, $x*$i+mt_rand(3, 6),mt_rand(0, $this->height/4) , $this->code[$i], $font_color);  }  $this->font_color = $font_color; }   //畫幹擾線 public function create_pix(){  $pix_color= $this->font_color;  for($i=0;$i<100;$i++){   imagesetpixel($this->img, mt_rand(0, $this->width),mt_rand(0, $this->height), $pix_color);  }  for($j=0;$j<4;$j++){   imagesetthickness($this->img, mt_rand(1, 2));   imageline($this->img, mt_rand(0, $this->width), mt_rand(0, $this->height), mt_rand(0, $this->width), mt_rand(0, $this->height), $pix_color);  } }   //得到驗證碼 public function getCode(){  return strtoupper($this->code); }   //輸出驗證碼 private function show_code(){  header("Content-type:image/png");  imagepng($this->img);  imagedestroy($this->img); }}

精彩專題分享:ASP.NET驗證碼大全 PHP驗證碼大全 java驗證碼大全

以上就是使用對象編寫的驗證碼類的全部內容,希望對大家學習PHP程式設計有所協助。

http://www.bkjia.com/PHPjc/1136637.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1136637.htmlTechArticlePHP實現適用於自訂的驗證碼類,php驗證碼 本文執行個體為大家分享了PHP驗證碼類,利用對象來實現的驗證碼類,供大家參考,具體內容如下...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.