Home >Backend Development >PHP Tutorial >100分,thinkphp模糊查询问题,模糊查询条件为数组

100分,thinkphp模糊查询问题,模糊查询条件为数组

WBOY
WBOYOriginal
2016-06-23 13:45:381172browse

 100分,急急急,thinkphp模糊查询问题,模糊查询条件为数组
$map2['ornamentations.tags']     =array('like',array("%$a1%","%$a2%","%$a3%"),'or');
查询条件应该是and关系,但是写and就报错,查不出结果,急急急


回复讨论(解决方案)

用 $map2['_string']吧

用 $map2['_string']吧


这个是什么意思?不懂

你需要把条件%号两边加上单引号来包起来,不然在组装成SQL的时候就回报错。


用 $map2['_string']吧


这个是什么意思?不懂


你在thinkphp手册里面搜索一下 _string 就知道怎么回事了,意思就是可以接你想要的查询sql语句了。

报错 输出你的sql 语句看下  sql拼接错误 

用 $map['_string'],就是将原生态的where条件语句赋给这个变量。。。

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