Home > PHP Framework > ThinkPHP > body text

ThinkPHP5.1: Use of array object query

爱喝马黛茶的安东尼
Release: 2019-12-16 16:04:12
forward
3957 people have browsed it

ThinkPHP5.1: Use of array object query

Developers who have used 5.0 tend to rely on the array query method of 5.0, but unfortunately the array query method of 5.1 is very different from 5.0, so I often hear developers complain about 5.1 The array query is not easy to use.

First of all, for reasons of security and ease of use, the official does not recommend the use of array query conditions. Secondly, you may not know that version 5.1 actually provides a new array object query method. Used to replace the previous array condition.

If your version is V5.1.21, then you can try the array object query method mentioned below, you will definitely have unexpected surprises^_^

For those who are accustomed to or severe For users who rely on array query conditions, you can choose array object query. This object completes the bridge between ordinary array query and system query expression. However, compared with the query expression method recommended by the system, you need to pay attention to Variable security to avoid SQL injection.

To use array object query, you first need to introduce the think\db\Where class.

use think\db\Where;
Copy after login

There are generally two ways to use Where objects. The first one is the simplest. You still use array conditions to define query conditions like 5.0, for example:

$map = [
    'name' => ['like', 'thinkphp%'],
    'title' => ['like', '%think%'],
    'id' => ['>', 10],
    'status' => 1,
];
Copy after login

Then, in the actual use of where When changing the method to

Db::name('user')
    ->where(new Where($map))
    ->select();
Copy after login

, the generated SQL is:

SELECT * FROM `think_user` WHERE `name` LIKE 'thinkphp%' AND `title` LIKE '%think%' AND `id` > 10 AND `status` =1
Copy after login

This method is the easiest to modify, and is equivalent to switching to the 5.0 array query method with one click. Of course, in addition to Db queries, model queries are also supported.

The second way is to directly instantiate a Where object, and then directly pass in the Where object instance when querying the where method.

$where = new Where;
$where['id'] = ['in', [1, 2, 3]];
$where['title'] = ['like', '%php%'];
Db::name('user')
    ->where($where)
    ->select();
Copy after login

Where object implements the ArrayAccess interface, so it can be assigned directly as an array.

The generated SQL is:

SELECT * FROM `think_user` WHERE   `id` IN (1,2,3) AND `title` LIKE '%php%'
Copy after login

Using Where object query can be mixed with other query methods. If you want to add parentheses to the query conditions of an array query object when you mix array query objects, you can use

$where          = new Where;
$where['id']    = ['in', [1, 2, 3]];
$where['title'] = ['like', '%php%'];
Db::name('user')
    ->where($where->enclose())
    ->where('status', 1)
    ->select();
Copy after login

. The generated SQL is:

SELECT * FROM `think_user` WHERE  ( `id` IN (1,2,3) AND `title` LIKE '%php%' ) AND  `status` =1
Copy after login

enclose method represents the query. The condition will be enclosed in parentheses on both sides.

When using array objects to query, please be sure to check the data type and try to avoid letting users determine your data, which may lead to the possibility of SQL injection.

PHP Chinese website has a large number of free ThinkPHP introductory tutorials, everyone is welcome to learn!

This article is reproduced from: https://blog.thinkphp.cn/778497

The above is the detailed content of ThinkPHP5.1: Use of array object query. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:thinkphp.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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!