首頁  >  文章  >  後端開發  >  PHP 三種方式實作鍊式操作

PHP 三種方式實作鍊式操作

高洛峰
高洛峰原創
2017-02-09 10:34:471181瀏覽

在php中有很多字串函數,例如要先過濾字串收尾的空格,再求出其長度,一般的寫法是:

strlen(trim($str))

如果要實現類似js中的鍊式操作,比如像下面這樣應該怎麼寫?

<pre class="brush:php;toolbar:false">$str-&gt;trim()-&gt;strlen()</pre>

下面分別用三種方式來實現:

方法一、使用魔法函數__call結合call_user_func來實作

思想:函數首先定義一個定義值,然後鍊式呼叫trim()strlen()函數,透過在呼叫的魔法函數__call()中使用call_user_func來處理終端關係,實作如下:<pre class="brush:php;toolbar:false">&lt;?php class StringHelper { private $value; function __construct($value) { $this-&gt;value = $value;     }     function __call($function, $args){         $this-&gt;value = call_user_func($function, $this-&gt;value, $args[0]);         return $this;     }     function strlen() {         return strlen($this-&gt;value);     } } $str = new StringHelper(&quot;  sd f  0&quot;); echo $str-&gt;trim('0')-&gt;strlen();</pre> <pre class="brush:php;toolbar:false">php test.php  8</pre>方法二、使用魔法函數

__call

結合

call_user_func_array

來實作<pre class="brush:php;toolbar:false">&lt;?php class StringHelper { private $value; function __construct($value) { $this-&gt;value = $value;     }     function __call($function, $args){         array_unshift($args, $this-&gt;value);         $this-&gt;value = call_user_func_array($function, $args);         return $this;     }     function strlen() {         return strlen($this-&gt;value);     } } $str = new StringHelper(&quot;  sd f  0&quot;); echo $str-&gt;trim('0')-&gt;strlen();</pre>說明:<pre class="brush:php;toolbar:false">array_unshift(array,value1,value2,value3...)</pre>

array_unshift()

說明:

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

array_unshift()說明:

strlen(trim($str))

array_unshift()說明:<pre class="brush:php;toolbar:false">$str-&gt;trim()-&gt;strlen()</pre>

array_unshift()

新數組的值將插入到數組的開頭。

call_user_func()

call_user_func_array都是動態呼叫函數的方法,差別在於參數的傳遞方式不同。 方法三、不使用魔法函數

__call

來實現

只需要修改
_call()

trim()

函數即可:

<?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();
函數重點,返回$this 。

在php中有很多字串函數,例如要先過濾字串收尾的空格,再求出其長度,一般的寫法是:<pre class="brush:php;toolbar:false">php test.php  8</pre>如果要實現類似js中的鍊式操作,例如像下面這樣該怎麼寫?

<pre class="brush:php;toolbar:false">&lt;?php class StringHelper { private $value; function __construct($value) { $this-&gt;value = $value;     }     function __call($function, $args){         array_unshift($args, $this-&gt;value);         $this-&gt;value = call_user_func_array($function, $args);         return $this;     }     function strlen() {         return strlen($this-&gt;value);     } } $str = new StringHelper(&quot;  sd f  0&quot;); echo $str-&gt;trim('0')-&gt;strlen();</pre>

下面分別用三種方式來實現:方法一、使用魔法函數__call結合call_user_func來實作思想:函數首先定義一個定義值,然後鍊式呼叫trim()

strlen()

函數,透過在呼叫的魔法函數

__call()

中使用call_user_func來處理終端關係,實作如下:<pre class="brush:php;toolbar:false">array_unshift(array,value1,value2,value3...)</pre>
public function trim($t)
{
    $this->value = trim($this->value, $t);
    return $this;
}
方法二、使用魔法函數

__call

結合

call_user_func_array

來實作rrreee說明:

rrreee

array_unshift()說明:rrreee

array_unshift()

說明:rrreee

array_unshift()

說明:rrreeearray_unshift()新數組的值將插入到數組的開頭。

call_user_func()

call_user_func_array

都是動態呼叫函數的方法,差別在於參數的傳遞方式不同。

方法三、不使用魔法函數

__call🎜來實現🎜🎜只需要修改🎜_call()🎜為🎜trim()🎜函數即可:🎜rrreee🎜函數重點,返回$this 。 🎜🎜🎜🎜更多PHP 三種方式實現鍊式操作 相關文章請關注PHP中文網! 🎜🎜🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn