PHP鏈式呼叫怎麼實現?

2020-07-16 10:06:26

PHP鏈式呼叫的實現方法:1、使用魔法函數【_call】結合【call_user_func】來實現;2、使用魔法函數【_call】結合【call_user_func_array】來實現;3、不使用魔法函數【_call】來實現。

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鏈式呼叫怎麼實現?的詳細內容,更多請關注TW511.COM其它相關文章!