摘要:
验证码使用: 首先使用Composer安装think-captcha扩展包: composer require topthink/think-captcha=1.* 模版内验证码的显示 <div>{:captcha_img()}</div> <div><img src="{:captcha_src( 阅读全文
摘要:
use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('welcome'); }); //任意方式请求 // Route::any('/login',function(){ // return 阅读全文
摘要:
use think\Route; //路由规则 // Route::rule('/a','admin/index/index'); // Route::get('/productlist/:id','/admin/index/productlist');//带参数 // Route::any('/p 阅读全文