摘要: 验证码使用: 首先使用Composer安装think-captcha扩展包: composer require topthink/think-captcha=1.* 模版内验证码的显示 <div>{:captcha_img()}</div> <div><img src="{:captcha_src( 阅读全文
posted @ 2021-01-11 15:52 孙旋 阅读(99) 评论(0) 推荐(0) 编辑
摘要: use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('welcome'); }); //任意方式请求 // Route::any('/login',function(){ // return 阅读全文
posted @ 2021-01-11 13:58 孙旋 阅读(59) 评论(0) 推荐(0) 编辑
摘要: use think\Route; //路由规则 // Route::rule('/a','admin/index/index'); // Route::get('/productlist/:id','/admin/index/productlist');//带参数 // Route::any('/p 阅读全文
posted @ 2021-01-11 13:57 孙旋 阅读(82) 评论(0) 推荐(0) 编辑