ThinkPHP3.2.3中,查询语句中in的使用方法。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP3.2.3中,查询语句中in的使用方法。相关的知识,希望对你有一定的参考价值。

//删除分类
public function del(){
$cid = I(‘get.cid‘);
$cate = M(‘category‘)->field(‘cid,pid‘)->select();
$cate = $this->son_cate($cate,$cid);
$cate[] = $cid;//$cate为一个数组
$where[‘cid‘] = array(‘in‘,$cate);//cid在这个数组中,
M(‘category‘)->where($where)->delete();//$where作为条件传进来
$this->success(‘分类删除成功‘);
}

 

以上是关于ThinkPHP3.2.3中,查询语句中in的使用方法。的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp3.2.3 查询时使用where+select查询出来的比find查询多一个空数组

ThinkPHP3.2.3自定义函数模版中无法调用

ThinkPHP3.2.3使用分页

ThinkPHP3.2.3公共模板中循环数组变量问题

thinkphp3.2.3怎么插入数据库

ThinkPHP3.2.3中三大自动中的缺陷问题