铁雪资源网 Design By www.gsvan.com
本文实例讲述了CodeIgniter框架验证码类库文件与用法。分享给大家供大家参考,具体如下:
折腾了我四五个小时,终于,ci的验证码类库成功的整出来了。
下面请看源码:
在application/libraries建立Authcode.php文件,代码如下:
<"#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/"; 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) "^#", "", $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了,代码如下:
<"text" name="gd_pic" /> <img src="/UploadFiles/2021-04-02/<">codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。
铁雪资源网 Design By www.gsvan.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
铁雪资源网 Design By www.gsvan.com
暂无CodeIgniter框架验证码类库文件与用法示例的评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。