码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp-where-字符串条件

时间:2017-02-10 00:11:18      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:thinkphp-where-字符串条件

语法

Db::table(表名)->where(条件)->select();

示例

Db::table(‘think_user‘)->where(‘type=1 AND status=1‘)->select();

预处理机制

Db::table(‘think_user‘)->where("id=:id and username=:name")
                        ->bind([‘id‘=>[1,\PDO::PARAM_INT],‘name‘=>‘thinkphp‘])
                        ->select();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896470

thinkphp-where-字符串条件

标签:thinkphp-where-字符串条件

原文地址:http://suyanzhu.blog.51cto.com/8050189/1896470

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!