thinkphp小问题,大家帮帮忙,谢谢了

WBOY
Release: 2016-06-23 13:01:56
Original
905 people have browsed it

$optstr=implode(',',$array);
$where['cid']=array('in',$optstr);
我想问一下第二句的array()里面的‘in’是什么也意思,有什么作用???谢谢了。


回复讨论(解决方案)

先声明一下:我没用过 thinkphp
假定你的代码是正确的,那么他表示:
在最终执行的 sql 指令中有  cid in (1,2,3,4) 这样的成分

是在括号里面的都执行

这里的in其实就是sql中的关键词,只是thinkphp封装了下,最后还是会解析成最原生的sql语句,可以用$Model->getLastSql()来看最近执行的一条sql就明白了

in 是sql语句中你的cid值可以为$optstr数组中的值

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template