實用PHP驗證碼類代碼(1/2)

來源:互聯網
上載者:User

<?php教程
session_start();
class authnum {
//圖片對象、寬度、高度、驗證碼長度
private $im;
private $im_width;
private $im_height;
private $len;
//隨機字串、y軸座標值、隨機顏色
private $randnum;
private $y;
private $randcolor;
//背景色的紅綠藍,預設是淺灰色
public $red=238;
public $green=238;
public $blue=238;
/**
* 可選設定:驗證碼類型、幹擾點、幹擾線、y軸隨機
* 設為 false 表示不啟用
**/
//預設是大小寫數字混合型,1 2 3 分別表示 小寫、大寫、數字型
public $ext_num_type='';
public $ext_pixel = false; //幹擾點
public $ext_line = false; //幹擾線
public $ext_rand_y= true; //y軸隨機
function __construct ($len=4,$im_width='',$im_height=25) {
// 驗證碼長度、圖片寬度、高度是執行個體化類時必需的資料
$this->len = $len; $im_width = $len * 15;
$this->im_width = $im_width;
$this->im_height= $im_height;
$this->im = imagecreate($im_width,$im_height);
}
// 設定圖片背景顏色,預設是淺灰色背景
function set_bgcolor () {
imagecolorallocate($this->im,$this->red,$this->green,$this->blue);
}
// 獲得任意位元的隨機碼
function get_randnum () {
$an1 = 'abcdefghijklmnopqrstuvwxyz';
$an2 = 'abcdefghijklmnopqrstuvwxyz';
$an3 = '0123456789';
if ($this->ext_num_type == '') $str = $an1.$an2.$an3;
if ($this->ext_num_type == 1) $str = $an1;
if ($this->ext_num_type == 2) $str = $an2;
if ($this->ext_num_type == 3) $str = $an3;
for ($i = 0; $i < $this->len; $i++) {
$start = rand(1,strlen($str) - 1);
$randnum .= substr($str,$start,1);
}
$this->randnum = $randnum;
$_session[an] = $this->randnum;
}
// 獲得驗證碼圖片y軸
function get_y () {
if ($this->ext_rand_y) $this->y = rand(5, $this->im_height/5);
else $this->y = $this->im_height / 4 ;
}

首頁 1 2 末頁
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.