手机
当前位置:查字典教程网 >编程开发 >php教程 >PHP实现链式操作的核心思想
PHP实现链式操作的核心思想
摘要:PHP链式操作的实现复制代码代码如下:$db->where()->limit()->order();在Common下创建Database.p...

PHP 链式操作的实现

复制代码 代码如下:

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

在 Common 下创建 Database.php。

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

Database.php:

<?php namespace Common; class Database{ function where($where){ return $this; //链式方法最核心的地方在于:在每一个方法之后 return $this } function order($order){ return $this; } function limit($limit){ return $this; } }

index.php:

<?php define('BASEDIR',__DIR__); //定义根目录常量 include BASEDIR.'/Common/Loader.php'; spl_autoload_register('CommonLoader::autoload'); $db = new CommonDatabase(); //传统的操作需要多行代码实现 //$db->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实现链式操作的核心思想1

【PHP实现链式操作的核心思想】相关文章:

PHP文件操作方法汇总

PHP基于MySQL数据库实现对象持久层的方法

php简单实现快速排序的方法

PHP实现将textarea的值根据回车换行拆分至数组

PHP编实现程动态图像的创建

JavaScript实现滚动栏效果的方法

PHP中实现图片的锐化

实现树状结构的两种方法

用PHP实现WEB动态网页静态

PHP实现过滤各种HTML标签

精品推荐
分类导航