摘要: 全局配置方式 'template' => [ 'layout_on' => true, 'layout_name' => 'layout', ] {include file="public/header" /} {__CONTENT__} {include file="public/footer"  阅读全文
posted @ 2020-07-18 14:15 HighKK 阅读(169) 评论(0) 推荐(0) 编辑
摘要: public function dimg(){ $image = Image::open('./image.png'); $image = \think\Image::open(request()->file('image')); //从直接获取当前请求中的文件上传对象 $image->thumb( 阅读全文
posted @ 2020-07-18 13:59 HighKK 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 数据验证 $rule = [ 'name' => 'require|max:25', //名称长度25以内 'age' => 'number|between:1,120', //年龄在1-120范围内 'email' => 'email',]; //邮箱为邮箱格式 $msg = [ 'name.re 阅读全文
posted @ 2020-07-18 13:53 HighKK 阅读(636) 评论(0) 推荐(0) 编辑