PHP的鍊式操作有幾種實作方式

php中世界最好的语言
發布: 2023-03-18 07:54:01
原創
1631 人瀏覽過

用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(&#39;0&#39;)->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(&#39;0&#39;)->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指針,方便呼叫後者函數。

方法三、不使用魔法函數call來實現

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

public function trim($t)
{
  $this->value = trim($this->value, $t);
  return $this;
}
登入後複製
登入後複製
重點在於,傳回$this指針,方便呼叫後者函數。


相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

相關閱讀:

PHP如何解決網站大流量與高並發

php自訂函數產生笛卡爾積的方法

PHP商品秒殺計時實作(解決大流量方案)
#

以上是PHP的鍊式操作有幾種實作方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!