Core Idea of PHP implementing chain operations

Source: Internet
Author: User

Core Idea of PHP implementing chain operations

This article mainly introduces the core idea of PHP implementing chain operations. This article focuses on its core idea, which is more intuitive and clear. For more information, see

Implementation of PHP chained operations

The Code is as follows:

$ Db-> where ()-> limit ()-> order ();

Create Database. php under Common.

The core of a chain operation is: return $ this at the end of the method;

Database. php:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

<? Php

Namespace Common;

 

Class Database {

Function where ($ where ){

Return $ this; // the core of the chained method is: return $ this after each method

}

Function order ($ order ){

Return $ this;

}

Function limit ($ limit ){

Return $ this;

}

}

Index. php:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<? Php

Define ('basedir' ,__ DIR _); // defines the root directory constant

Include BASEDIR. '/Common/Loader. php ';

Spl_autoload_register ('\ Common \ Loader: autoload ');

 

$ Db = new \ Common \ Database ();

 

// Traditional operations require multi-line code implementation

// $ Db-> where ('Id = 1 ');

// $ Db-> where ('name = 2 ');

// $ Db-> order ('Id desc ');

// $ Db-> limit (10 );

 

// Use a chain operation and a line of code to solve the problem

$ Db-> where ('Id = 1')-> where ('name = 2')-> order ('Id desc')-> limit (10 );

When using the chain operation, ide (netbeans will automatically prompt ):

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.