用PHP做出三種鍊式運算的方法分別是使用魔法函數call結合call_user_func來實現,使用魔法函式call結合call_user_func_array來實作以及不使用魔法函式call來實作。
在php中有很多字串函數,例如要先過濾字串收尾的空格,再求出其長度,一般的寫法是:
strlen(trim($str))
如果要實作類似js中的鍊式操作,例如像下面這樣該怎麼寫?
$str->trim()->strlen()
以下分別用三種方式來實現:
#方法一、使用魔法函數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
方法二、使用魔法函數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();
public function trim($t) { $this->value = trim($this->value, $t); return $this; }
public function trim($t) { $this->value = trim($this->value, $t); return $this; }
以上是PHP的鍊式操作有幾種實作方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!