使用extend扩展类库中的Verify验证码

浏览:1404 发布日期:2016/05/18 分类:ThinkPHP5专区
修改extend\org\Verify.php文件namespace extend\org;修改application\index\controller\Index.php文件<?php
namespace app\index\controller;

use think\Controller;

\think\loader::import('org' . DS . 'Verify', EXTEND_PATH, EXT);
use extend\org\Verify;
class Index extends Controller
{
    public function index()
    {
        $verify = new Verify();
        $verify->entry();
    }
}
最佳答案
评论( 相关
后面还有条评论,点击查看>>