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

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

WBOY
Release: 2016-06-13 12:09:38
Original
889 people have browsed it

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


------解决思路----------------------
用 $map2['_string']吧
------解决思路----------------------
你需要把条件%号两边加上单引号来包起来,不然在组装成SQL的时候就回报错。
------解决思路----------------------

引用:
Quote: 引用:

用 $map2['_string']吧

这个是什么意思?不懂



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

------解决思路----------------------
报错 输出你的sql 语句看下  sql拼接错误 
------解决思路----------------------
用 $map['_string'],就是将原生态的where条件语句赋给这个变量。。。
Related labels:
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