tp5 like模糊查询
时间: 2024-01-20 19:16:50 浏览: 128
模糊查询
5星 · 资源好评率100%
以下是两种TP5中进行like模糊查询的例子:
1. 使用数组方式进行like模糊查询:
```php
Db::table('think_user')
->where([
['name', 'like', $name . '%'],
['title', 'like', '%' . $title],
['id', '>', $id],
['status', '=', $status],
])
->select();
```
2. 使用数组方式和exp查询进行like模糊查询:
```php
Db::table('think_user')
->where([
['name', 'like', 'thinkphp%'],
['title', 'like', '%thinkphp'],
['id', 'exp', Db::raw('>score')],
['status', '=', 1],
])
->select();
```
阅读全文