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();
}
}
最佳答案
