标签:
一、生成验证码
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(){}
=========================以下自己写的
====================================
标签:
原文地址:http://www.cnblogs.com/rainblack/p/4723768.html