Home > php教程 > php手册 > PHP实现链式操作的核心思想

PHP实现链式操作的核心思想

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:03:02
Original
1074 people have browsed it

这篇文章主要介绍了PHP实现链式操作的核心思想,本文着重讲解它的核心思想,比较直观明子,需要的朋友可以参考下

PHP 链式操作的实现

 

复制代码 代码如下:


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

在 Common 下创建 Database.php。

链式操作最核心的地方在于:在方法的最后 return $this;

Database.php:

index.php:

where('id = 1'); //$db->where('name = 2'); //$db->order('id desc'); //$db->limit(10); //使用链式操作,一行代码解决问题 $db->where('id = 1')->where('name = 2')->order('id desc')->limit(10);

在使用链式操作时,ide(netbeans 会给出自动提示):

 

PHP实现链式操作的核心思想

Related labels:
php
source:php.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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template