码迷,mamicode.com
首页 > 其他好文 > 详细

tp验证码

时间:2015-08-12 12:54:00      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

一、生成验证码  

1、commonController.class.php

     $Verify = new \Think\Verify();

     $Verify->entry();

 二、验证码检测

   $verify = new \Think\Verify();

    return $verify->check($code, $id); //$id是多个验证的情况下写的,一个不需要

三、地址输入就能看了

四、视图

<img src="{:U("")}"  onclick=‘src={:U("")}‘ style="cursor=pointer"/>

 

indexcontroller.class.php  //用于验证的

public function showSession(){

  dump($_SESSION);

  $verify = new \Think\Verify();

  return $verify->check($code, $id);

}

===========

控制器-》前置验证  _before_insert(){}

=========================以下自己写的

====================================

 

tp验证码

标签:

原文地址:http://www.cnblogs.com/rainblack/p/4723768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!