熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php ci框架驗證碼實例分析

2022-06-13   來源: PHP編程 

  php代碼

復制代碼 代碼如下:
<?php
class Captcha_code
{
var $width=;
var $num=;
var $height=;
var $name=randcode;
public function __construct($conf="")
{
if($conf!="")
{
foreach($conf as $key=>$value)
{
$this>$key=$value;
}
}
}

function show()
{
Header("Contenttype: image/gif");
/*
* 初始化
*/
$border = ; //是否要邊框 要:不要
$how = $this>num; //驗證碼位數
$w = $this>width; //圖片寬度
$h = $this>height; //圖片高度
$fontsize = ; //字體大小
$alpha = "abcdefghijkmnopqrstuvwxyz"; //驗證碼內容:字母
$number = ""; //驗證碼內容:數字
$randcode = ""; //驗證碼字符串初始化
srand((double)microtime()*); //初始化隨機數種子

$im = ImageCreate($w $h); //創建驗證圖片

/*
* 繪制基本框架
*/
$bgcolor = ImageColorAllocate($im ); //設置背景顏色
ImageFill($im $bgcolor); //填充背景色
if($border)
{
$black = ImageColorAllocate($im ); //設置邊框顏色
ImageRectangle($im $w $h $black);//繪制邊框
}

/*
* 逐位產生隨機字符
*/
for($i=; $i<$how; $i++)
{
$alpha_or_number = mt_rand( ); //字母還是數字
$str = $alpha_or_number ? $alpha : $number;
$which = mt_rand( strlen($str)); //取哪個字符
$code = substr($str $which ); //取字符
$j = !$i ? : $j+; //繪字符位置
$color = ImageColorAllocate($im mt_rand() mt_rand() mt_rand()); //字符隨即顏色
ImageChar($im $fontsize $j $code $color); //繪字符
$randcode = $code; //逐位加入驗證碼字符串
}

/*
* 添加干擾
*/
for($i=; $i<; $i++)//繪背景干擾線
{
$color = ImageColorAllocate($im mt_rand() mt_rand() mt_rand()); //干擾線顏色
ImageArc($im mt_rand($w) mt_rand($h) mt_rand() mt_rand() $color); //干擾線
}
for($i=; $i<$how*; $i++)//繪背景干擾點
{
$color = ImageColorAllocate($im mt_rand() mt_rand() mt_rand()); //干擾點顏色
ImageSetPixel($im mt_rand($w) mt_rand($h) $color); //干擾點
}

//把驗證碼字符串寫入session

//$this>session>set_userdata(array($this>name=>$randcode));

$_SESSION[$this>name]=$randcode;
/*繪圖結束*/
Imagegif($im);
ImageDestroy($im);
/*繪圖結束*/
}
}
?>

  
調用php代碼

復制代碼 代碼如下:
function verify_image() {
$conf[name] = verify_code; //作為配置參數
$this>load>library(lib_captcha $conf);
$this>lib_captcha>show();
$yzm_session = $this>session>userdata(verify_code);
echo $yzm_session;
}

  
html代碼

復制代碼 代碼如下:
<dl>
<dt>驗證碼</dt>
<dd>
<input type="text" name="verify_text" id="verify_text" class="yzma" value="">
<img src="/user/verify_image" alt="驗證碼" id="verify_code" class="yz_img" />
<a href="javascript:changeCode();" class="change_yz">換一張</a>
</dd>
<dd class="tips_wrong"><b>驗證碼不正確</b></dd>
<dd class="tips_correct"></dd>
</dl>

  
js代碼

復制代碼 代碼如下:

  
<script type="text/javascript">
function changeCode(){
FSquery("#verify_code")src ="/user/verify_image?r=" + Mathrandom();
}
</script>


From:http://tw.wingwit.com/Article/program/PHP/201311/21333.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.