ThinkPHP 3.2.3实现加减乘除图片验证码

ThinkPHP 3.2.3 自带的验证码类位于 /ThinkPHP/Library/Think/Verify.class.php,字体文件位于 /ThinkPHP/Library/Think/Verify/

可以在 Verify.class.php 文件内进行修改,也可以单独写一个类继承自带的验证码类。如果单独写一个继承的类,可以重用父类的属性和方法,但是要注意的是父类中有一些属性和方法是私有(private)的,可以修改这些私有的属性和方法为保护(protected)的,如果不希望修改框架自带的方法的话,也可以在子类中再定义这些属性和方法。

测试的控制器位于 /Application/Home/Controller/TestVerifyController.class.php

测试的试图位于 /Application/Home/View/User/verify.html

自定义的子类位于 /Applicaion/Home/Common/VerifyProcess.class.php

VerifyProcess.class.php:

namespace HomeCommon;

use ThinkVerify;

class VerifyProcess extends Verify {

private $_image = NULL; // 验证码图片实例

private $_color = NULL; // 验证码字体颜色

public function entryProcess($id = '') {

// 图片宽(px)

$this->imageW || $this->imageW = $this->length*$this->fontSize*1.5 +

$this->length*$this->fontSize/2;

// 图片高(px)

$this->imageH || $this->imageH = $this->fontSize * 2.5;

// 建立一幅 $this->imageW x $this->imageH 的图像

$this->_image = imagecreate($this->imageW,$this->imageH);

// 设置背景

imagecolorallocate($this->_image,$this->bg[0],$this->bg[1],$this->bg[2]);

// 验证码字体随机颜色

$this->_color = imagecolorallocate($this->_image,mt_rand(1,150),

mt_rand(1,150));

// 验证码使用随机字体

$ttfPath = $_SERVER['DOCUMENT_ROOT'].'/ThinkPHP/Library/Think/Verify/' .

($this->useZh ? 'zhttfs' : 'ttfs') . '/';

if(empty($this->fontttf)){

$dir = dir($ttfPath);

$ttfs = array();

while (false !== ($file = $dir->read())) {

if($file[0] != '.' && substr($file,-4) == '.ttf') {

$ttfs[] = $file;

}

}

$dir->close();

$this->fontttf = $ttfs[array_rand($ttfs)];

}

$this->fontttf = $ttfPath . $this->fontttf;

if($this->useImgBg) {

$this->_background();

}

if ($this->useNoise) {

// 绘杂点

$this->_writeNoise();

}

if ($this->useCurve) {

// 绘干扰线

$this->_writeCurve();

}

// 绘验证码

$codeNX = 0; // 验证码第N个字符的左边距

// 验证码为简单运算

$a = mt_rand(1,9);

$b = mt_rand(1,9);

$operate_array = array('+','-','*');

$key = mt_rand(0,count($operate_array) - 1);

if($operate_array[$key] == '+') { // 加法

$code = $a.'+'.$b.'=';

$result = intval($a + $b);

} elseif($operate_array[$key] == '-') { // 减法

$code = max($a,$b).'-'.min($a,$b).'=';

$result = intval(abs($a - $b));

} else { // 乘法

$code = $a.'*'.$b.'=';

$result = intval($a * $b);

}

$this->length = 4;

for ($i = 0; $i<$this->length; $i++) {

$codeNX += mt_rand($this->fontSize*1.2,$this->fontSize*1.6);

imagettftext($this->_image,$this->fontSize,mt_rand(-40,40),

$codeNX,$this->fontSize*1.6,$this->_color,$this->fontttf,$code[$i]);

}

// 保存验证码

$key = $this->authcode($this->seKey);

$result = $this->authcode($result);

$secode = array();

$secode['verify_code'] = $result; // 把校验码保存到session

$secode['verify_time'] = NOW_TIME; // 验证码创建时间

session($key.$id,$secode);

header('Cache-Control: private,max-age=0,no-store,no-cache,must-revalidate');

header('Cache-Control: post-check=0,pre-check=0',false);

header('Pragma: no-cache');

header("content-type: image/png");

// 输出图像

imagepng($this->_image);

imagedestroy($this->_image);

}

/**

* 画杂点

* 往图片上写不同颜色的字母或数字

*/

private function _writeNoise() {

$codeSet = '2345678abcdefhijkmnpqrstuvwxyz';

for($i = 0; $i < 10; $i++){

//杂点颜色

$noiseColor = imagecolorallocate($this->_image,mt_rand(150,225),

mt_rand(150,225));

for($j = 0; $j < 5; $j++) {

// 绘杂点

imagestring($this->_image,5,mt_rand(-10,$this->imageW),

mt_rand(-10,$this->imageH),$codeSet[mt_rand(0,29)],$noiseColor);

}

}

}

/**

* 画一条由两条连在一起构成的随机正弦函数曲线作干扰线(你可以改成更帅的曲线函数)

*

* 高中的数学公式咋都忘了涅,写出来

* 正弦型函数解析式:y=Asin(ωx+φ)+b

* 各常数值对函数图像的影响:

* A:决定峰值(即纵向拉伸压缩的倍数)

* b:表示波形在Y轴的位置关系或纵向移动距离(上加下减)

* φ:决定波形与X轴位置关系或横向移动距离(左加右减)

* ω:决定周期(最小正周期T=2π/?ω?)

*

*/

private function _writeCurve() {

$px = $py = 0;

// 曲线前部分

$A = mt_rand(1,$this->imageH/2); // 振幅

$b = mt_rand(-$this->imageH/4,$this->imageH/4); // Y轴方向偏移量

$f = mt_rand(-$this->imageH/4,$this->imageH/4); // X轴方向偏移量

$T = mt_rand($this->imageH,$this->imageW*2); // 周期

$w = (2* M_PI)/$T;

$px1 = 0; // 曲线横坐标起始位置

$px2 = mt_rand($this->imageW/2,$this->imageW * 0.8); // 曲线横坐标结束位置

for ($px=$px1; $px<=$px2; $px = $px + 1) {

if ($w!=0) {

$py = $A * sin($w*$px + $f)+ $b + $this->imageH/2;

// y = Asin(ωx+φ) + b

$i = (int) ($this->fontSize/5);

while ($i > 0) {

imagesetpixel($this->_image,$px + $i,$py + $i,$this->_color);

// 这里(while)循环画像素点比imagettftext和imagestring用字体大小一次画出

(不用这while循环)性能要好很多

$i--;

}

}

}

// 曲线后部分

$A = mt_rand(1,$this->imageH/2); // 振幅

$f = mt_rand(-$this->imageH/4,$this->imageW*2); // 周期

$w = (2* M_PI)/$T;

$b = $py - $A * sin($w*$px + $f) - $this->imageH/2;

$px1 = $px2;

$px2 = $this->imageW;

for ($px=$px1; $px<=$px2; $px=$px+ 1) {

if ($w!=0) {

$py = $A * sin($w*$px + $f)+ $b + $this->imageH/2;

// y = Asin(ωx+φ) + b

$i = (int) ($this->fontSize/5);

while ($i > 0) {

imagesetpixel($this->_image,$this->_color);

$i--;

}

}

}

}

/* 加密验证码 */

private function authcode($str){

$key = substr(md5($this->seKey),8);

$str = substr(md5($str),8,10);

return md5($key . $str);

}

/**

* 绘制背景图片

* 注:如果验证码输出图片比较大,将占用比较多的系统资源

*/

private function _background() {

$path = dirname(__FILE__).'/Verify/bgs/';

$dir = dir($path);

$bgs = array();

while (false !== ($file = $dir->read())) {

if($file[0] != '.' && substr($file,-4) == '.jpg') {

$bgs[] = $path . $file;

}

}

$dir->close();

$gb = $bgs[array_rand($bgs)];

list($width,$height) = @getimagesize($gb);

// Resample

$bgImage = @imagecreatefromjpeg($gb);

@imagecopyresampled($this->_image,$bgImage,$this->imageW,

$this->imageH,$width,$height);

@imagedestroy($bgImage);

}

}

TestVerifyController.class.php:

namespace HomeController;

use ThinkController;

use HomeCommonVerifyProcess;

class TestVerifyController extends Controller {

// 界面

public function index() {

$this->display('User/verify');

}

// 验证

public function check_verify() {

$verify = new VerifyProcess();

if(!$verify->check($_POST['verify'])) {

$this->error('验证码错误');

}

}

// 显示验证码

public function verify() {

$verify = new VerifyProcess();

$verify->entryProcess();

}

}

verify.html:

Document

效果:

也可以点击图片更换验证码,只需要把点击事件换到图片上就行了。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


(1)创建数据表: CREATE TABLE IF NOT EXISTS `think_form` (   `id` smallint(4) unsigned NOT NULL AUTO_INCREMENT,
组合查询的主体还是采用数组方式查询,只是加入了一些特殊的查询支持,包括字符串模式查询(_string)、复合查询(_complex)、请求字符串查询(_query),混合查询中的特殊查询每次查询只能定义一个,由于采用数组的
(1)创建模版:/App/Home/View/Form/edit.html   <FORM method=\"post\" action=\"__URL__/update\">
自定义配置文件user.php: <?php return array(    \'sex\'=>\'man\', ); config.php: <?php return array(
在一些成熟的CMS系统中,后台一般都包含一个配置中心(如织梦后台中系统设置),以方便站长在后台修改配置文件;那么这个功能是如果实现的呢?在ThinkPHP中有没有捷径可走呢?答案肯定是有的。下面大概说一下这个功能
废话不多说先上图预览下,即本博客的分页; 这个分页类是在thinkphp框架内置的分页类的基础上修改而来,原分页类的一些设计,在实际运用中感觉不是很方便;
在php中截取字符串的函数有很多,而在thinkphp中也可以直接使用php的函数,本文给大家简单的介绍thinkPHP模板中截取字符串的具体用法,希望能对各位有所帮助。
thinkphp开发图片上传,图片异步上传是目前比较方便的功能,这里我就不写css文件了,将代码写出来。
配置数据库:/app/Common/Conf/config.php 方法一: // 添加数据库配置信息 \'DB_TYPE\'   => \'mysql\',// 数据库类型
/app/Home/Controller/IndexController.class.php
(1)创建数据表: CREATE TABLE IF NOT EXISTS `think_data` (   `id` int(8) unsigned NOT NULL AUTO_INCREMENT,
(1)控制器设置:/app/Home/Controller/IndexController.class.php <?php namespace HomeController; use ThinkController;
(1)普通模式 http://localhost/index.php?m=module&a=action&var=value m参数表示模块,a操作表示操作(模块和操作的URL参数名称是可以配置的),后面的表示其他GET参数。
入库的时候用htmlspecialchars()处理含有html代码的内容 输出的时候用htmlspecialchars_decode()处理含有html代码的内容
<?php define(\'APP_NAME\',\'app\'); define(\'APP_PATH\',\'./app/\'); define(\'APP_DEBUG\',TRUE); // 开启调试模式
(1)创建控制器中定义read方法:/App/Home/Controller/FormController.class.php public function read($id=0){
一、实现不同字段相同的查询条件 $User = M(\"User\"); // 实例化User对象 $map[\'name|title\'] = \'thinkphp\';
如果你的数据完全是内部操作写入而不是通过表单的话(也就是说可以充分信任数据的安全),那么可以直接使用add方法,如:
查询表达式的使用格式: $map[\'字段名\'] = array(\'表达式\',\'查询条件\'); 表达式不分大小写,支持的查询表达式有下面几种,分别表示的含义是:
一、使用字符串作为查询条件 $User = M(\"User\"); // 实例化User对象 $User->where(\'type=1 AND status=1\')->select();