$data = $this->request->post(); $where = []; $where['status'] = 1; $map['name'] = ['like','%'.$data['goods_name'].'%']; $goods_list = Db::name('mall_goods')->where($map)->order($order)->select();
クエリエラー。 。 。 SQL ステートメントを出力すると、次のようになっていることがわかります。
"SELECT * FROM `tp_mall_goods` WHERE `status` = 1 AND `name` IN ('like','%发%')"
tp5 はそのようなクエリをサポートしています。以下は tp5 の同じ SQL ステートメントです:
"SELECT * FROM `tp_mall_goods` WHERE `status` = 1 AND `name` LIKE '%公開% 「
PHP5 は次のようになると思います。 where('name', 'like', 'php')-
配列の形式は次のとおりです。 $where['name'] =array('like',array('% 1 %','%2%'),'OR')