<img width="30%" class="left15" height="50" alt="验证码" src="{:U('Home/Index/verify_c',array())}" title="点击刷新">contorller<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
print_r($_SESSION);
$this->display();
echo u();
}
public function verify_c(){
$Verify = new \Think\Verify();
$Verify->entry();
}
}直接输出verify_c 能访问改方法,但提示无法调用Verify模块 路径错误Class 'Think\Verify' not found
度娘半天,都没找到问题所在,版本是3.2.2 4月21日 20点下载的版本。求大侠解答
最佳答案