码迷,mamicode.com
首页 > Web开发 > 详细

php 链式操作的实现 学习记录

时间:2018-09-21 17:42:09      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:https   order   his   function   span   col   comm   html   ase   

php 面向对象中实现链式操作的关键部分:调用的方法中返回当前对象 ,从而实现链式操作

<?php
namespace commom;

class db
{
    public function where($where){
        return $this;
    }

    public function order($order){
        return $this;
    }

    public function limit($limit){
        return $this;
    }
    public function select($select){

    }
}

这样就可以实现链式操作

<?php
    $db  = new DataBase();
    $db->where()->order()->select();
?>

 

 

转: https://www.cnblogs.com/lilili/p/5145963.html

 

php 链式操作的实现 学习记录

标签:https   order   his   function   span   col   comm   html   ase   

原文地址:https://www.cnblogs.com/fps2tao/p/9687507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!