The core idea of implementing chain operation in PHP

Source: Internet
Author: User
Tags php define

This article mainly introduces the core idea of chain operation in PHP, this article focuses on its core ideas, more intuitive, the need for friends can refer to the

The implementation of PHP chain-type operation

The code is as follows:

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

Create the database.php under Common.

Chain operation is the core of the place: in the final return $this 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;//Chain method The most central place is: After each method return $this} function order ($order) {retur n $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__); Define root constants include BASEDIR. ' /common/loader.php ';   Spl_autoload_register (' commonloader::autoload ');   $db = new Commondatabase (); Traditional operations require multiple lines of code implementation//$DB->where (' id = 1 '); $db->where (' name = 2 '); $db->order (' id desc ');   $db->limit (10); With chained operations, one line of code solves the problem $db->where (' id = 1 ')->where (' name = 2 ')->order (' id desc ')->limit (10);

When using a chained operation, the IDE (NetBeans gives an automatic 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.