thinkphp-where-字符串条件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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-字符串条件的主要内容,如果未能解决你的问题,请参考以下文章
在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串