经常看到PHP框架中有$obj->aa()->bb();这样的代码,请问这样如何实现的,有何好处?

发布网友 发布时间:2022-04-06 07:41

我来回答

2个回答

懂视网 时间:2022-04-06 12:02

PHP链式调用的实现方法:

方法一、使用魔法函数__call结合call_user_func来实现

思想:首先定义一个字符串类StringHelper,构造函数直接赋值value,然后链式调用trim()strlen()函数,通过在调用的魔法函数__call()中使用call_user_func来处理调用关系,实现如下:

<?php
class StringHelper 
{
 private $value;
 function __construct($value)
 {
 $this->value = $value;
 }
 function __call($function, $args){
 $this->value = call_user_func($function, $this->value, $args[0]);
 return $this;
 }
 function strlen() {
 return strlen($this->value);
 }
}
$str = new StringHelper(" sd f 0");
echo $str->trim('0')->strlen();

终端执行脚本:

php test.php 
8

方法二、使用魔法函数__call结合call_user_func_array来实现

<?php
class StringHelper 
{
 private $value;
 function __construct($value)
 {
 $this->value = $value;
 }
 function __call($function, $args){
 array_unshift($args, $this->value);
 $this->value = call_user_func_array($function, $args);
 return $this;
 }
 function strlen() {
 return strlen($this->value);
 }
}
$str = new StringHelper(" sd f 0");
echo $str->trim('0')->strlen();

说明:

array_unshift(array,value1,value2,value3...)

array_unshift() 函数用于向数组插入新元素。新数组的值将被插入到数组的开头。

call_user_func()call_user_func_array都是动态调用函数的方法,区别在于参数的传递方式不同。

方法三、不使用魔法函数__call来实现

只需要修改_call()trim()函数即可:

public function trim($t)
{
 $this->value = trim($this->value, $t);
 return $this;
}

重点在于,返回$this指针,方便调用后者函数。

相关学习推荐:PHP编程从入门到精通

热心网友 时间:2022-04-06 09:10

链式调用。写起来方便,省力有感觉。代码逻辑看起来更连贯。

实际上看你需求。不是所有的接口都适合设计成这样。

实现方法就是你说的那样。

帮你举个小例子(没测过,可能会敲错):


Class Obj {

    public function aa() {

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

}

$obj = new Obj();

$this->aa()->bb();

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com