03 2019 档案

摘要:使用tp5的thinkphp-image类库处理图片 使用方法手册都有,为了增加印象我自己记录一下 手册:https://www.kancloud.cn/manual/thinkphp5/177530 我的需求是在app的管理后台上传压缩的图片 //图片压缩上传 public function up 阅读全文
posted @ 2019-03-30 14:44 文彬哦 阅读(4019) 评论(0) 推荐(0)
摘要:Call to a member function allowField() on null 在空对象上调用 allowField() 没有该模型对象无法调用,需要创建相应的模型 错误版本: if ($this->$model->allowField(true)->isUpdate($isUpdat 阅读全文
posted @ 2019-03-28 10:04 文彬哦 阅读(925) 评论(0) 推荐(0)
摘要:根据多个id批量更新指定字段值 $map[] = ['id','in', input('post.id/a')]; $result = db('picture')->where($map)->update(['posid' => 1]); 相当于sql语句: UPDATE `yj_picture` 阅读全文
posted @ 2019-03-12 16:47 文彬哦 阅读(7248) 评论(0) 推荐(0)