作者:vijay | 来源:互联网 | 2014-06-12 18:37
验证码:导入验证码类,在aoli\ThinkPHP\Lib\ORG\Util\Image.class.php里有验证码方法英文验证码:buildImageVerify($length,$mode,$type...
验证码:导入验证码类,在aoli\ThinkPHP\Lib\ORG\Util\Image.class.php里有验证码方法
英文验证码:buildImageVerify($length,$mode,$type,$width,$height,$verifyName)
length:验证码的长度,默认为 4 位数
mode:验证字符串的类型,默认为数字,其他支持类型有 0 字母 1 数字 2 大写字母 3 小写字母 4
中文 5 混合(去掉了容易混淆的字符 oOLl 和数字 01 )
type:验证码的图片类型,默认为 png
width:验证码的宽度,默认会自动根据验证码长度自动计算
height:验证码的高度,默认为 22
verifyName:验证码的 SESSION 记录名称,默认为 verify
中文验证码:GBVerify ($length,$type,$width,$height,$fontface,$verifyName)
length:验证码的长度,默认为 4 位数
type:验证码的图片类型,默认为 png
width:验证码的宽度,默认会自动根据验证码长度自动计算
height:验证码的高度,默认为 50
fontface:使用的字体文件,使用完整文件名或者放到图像类所在的目录下面,默认使用的字体文件是 simhei.ttf(该文件可以从 window 的 Fonts 目录下面找到)
verifyName:验证码的 SESSION 记录名称,默认为 verify
如果无法显示验证码,请检查:
PHP 是否已经安装 GD 库支持;
输出之前是否有任何的输出(尤其是 UTF8 的 BOM 头信息输出);
Image 类库是否正确导入;
如果是中文验证码检查是否有拷贝字体文件到类库所在目录;
CommonAction.class.php
- class CommonAction extends Action{
- function verify(){
- import('ORG.Util.Image');
-
-
-
- Image::GBVerify();
- }
-
- }
- ?>
模板index.html
- 验证码:<input type="text" name="verify" /><img src="__APP__/common/verify" onclick="show(this)" /><br />
- <input type="submit" value="注册" />
- form>
- <script type="text/Javascript">
- function show(obj){
- obj.src="__APP__/common/verify/random/"+Math.random();
- }
- script>
控制器UserAction.class.php
-
- if($_SESSION[&#39;verify&#39;]!=md5($_POST[&#39;verify&#39;])){
- $this->error(&#39;验证码不正确&#39;);
- }
分页://导入分页类,在aoli\ThinkPHP\Lib\ORG\Util\Page.class.php里有验证码方法.
UserAction.class.php
- function index(){
- import(&#39;ORG.Util.Page&#39;);
- $user=M(&#39;user&#39;);
- $count=$user->count();
- $page=new Page($count,3);
- $page->setConfig(&#39;theme&#39;,&#39;
总共:%totalRow%%header% %nowPage%/%totalPage%页 %first% %upPage% %prePage% %linkPage% %nextPage% %downPage% %end%
&#39;);
- $show=$page->show();
- $list=$user->field(array(&#39;id&#39;,&#39;username&#39;,&#39;createip&#39;))->order(&#39;id desc&#39;)->limit($page->firstRow.&#39;,&#39;.$page->listRows)->select();
- $this->assign(&#39;alist&#39;,$list);
- $this->assign(&#39;page&#39;,$show);
- $this->display();
- }
模板页index.html
- <volist name="alist" id="vo">
- <li><span>ID:span>{$vo[&#39;id&#39;]}<span>用户名:span>{$vo[&#39;username&#39;]}<span>注册ip:span>{$vo[&#39;createip&#39;]}<a href="__URL__/del/id/{$vo[&#39;id&#39;]}">删除a> <a href="__URL__/edit/id/{$vo[&#39;id&#39;]}">编辑a>li>
- volist>
- {$page}