PHP鍊式呼叫的實作方法:1、使用魔法函式【_call】結合【call_user_func】來實作;2、使用魔法函式【_call】結合【call_user_func_array】來實作;3、不使用魔法函式【_call】來實現。
PHP鍊式呼叫的實作方法:
##方法一、使用魔法函數 __call結合
call_user_func來實作
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鍊式呼叫怎麼實作?的詳細內容。更多資訊請關注PHP中文網其他相關文章!