您现在的位置是:首页 > PHP技术PHP技术
Thinkphp5.1.30查询和查询分页代码
2018-12-10【PHP技术】2255 人已围观
简介查询是非常频繁使用的功能。thinkphp5.1.30查询功能一般流程如下$keywords=Request::param(...
查询是非常频繁使用的功能。thinkphp5.1.30查询功能一般流程如下
$keywords = Request::param('keywords');
//申明变量
$whr = [];
$whr[] = ['del_flag','=',0]; //给出一个固定通用条件
if($keywords <>""){
$whr[] = ['title','like','%'.$keywords.'%'];
}
$list = Db::name('ads)
->where($whr)
->paginate(5,false,[
'query'=>Request:param(),
])
$this->assign('list',$list);
return $this->fetch();重点tp5.1.30中like查询使用数组拼接
$whr[] = [字段名,'like',关键字]
分页重点传递参数
paginate(页显示数,简单查询false,附带参数
[
'query'=>省事就全部参数Request::param()
]
)
关注宁波网站建设博客,更多精彩分享,敬请期待!
Tags:
很赞哦! ()
相关文章
随机图文
Thinkphp更新数据时间字段的插入
thinkphp在处理数据写入数据库时同时记录操作时间,可以用$arr['add_time'] = time();或date...
PHP str_pad函数使用注意点
定义和用法str_pad() 函数把字符串填充为新的长度。语法str_pad(string,length,pad_string,pad_ty...
thinkphp imagettftext(): Could not find/open font验证码无法显示报错
thinkphp imagettftext(): Could not find/open font tp5.1验证码无法显示.打开debu...
Thinkphp3.1.3验证码字符居中显示
tp3中的验证码默认是按图片要求宽度加5个象素为起始的. 如果验证码设置非默认宽度就会造成字符不居中.居中解决办法修改\ThinkPHP...




微信收款码
支付宝收款码