Home >Backend Development >PHP Tutorial >thinkphp小问题,大家帮帮忙,谢谢了

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

WBOY
WBOYOriginal
2016-06-23 13:01:56941browse

$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数组中的值

Statement:
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
Previous article:非对象的成员函数Next article:PHP生成制作验证码