在php中有很多字串函數,例如要先過濾字串收尾的空格,再求出其長度,一般的寫法是:
strlen(trim($str))
如果要實現類似js中的鍊式操作,比如像下面這樣應該怎麼寫?
<pre class="brush:php;toolbar:false">$str->trim()->strlen()</pre>下面分別用三種方式來實現:
__call
結合call_user_func
來實作思想:函數首先定義一個定義值,然後鍊式呼叫trim()
和strlen()
函數,透過在呼叫的魔法函數__call()
中使用call_user_func
來處理終端關係,實作如下:<pre class="brush:php;toolbar:false"><?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();</pre> <pre class="brush:php;toolbar:false">php test.php
8</pre>
方法二、使用魔法函數
結合
call_user_func_array<pre class="brush:php;toolbar:false"><?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();</pre>
說明:<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; }
array_unshift()
說明:
strlen(trim($str))
array_unshift()
說明:<pre class="brush:php;toolbar:false">$str->trim()->strlen()</pre>
和call_user_func_array
都是動態呼叫函數的方法,差別在於參數的傳遞方式不同。 方法三、不使用魔法函數
來實現
只需要修改
_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中的鍊式操作,例如像下面這樣該怎麼寫? 下面分別用三種方式來實現:方法一、使用魔法函數__call
結合call_user_func
來實作思想:
函數首先定義一個定義值,然後鍊式呼叫trim()
和
函數,透過在呼叫的魔法函數
__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_user_func_array來實作rrreee
說明:
array_unshift()
說明:rrreee
rrreee
說明:rrreee
array_unshift()
新數組的值將插入到數組的開頭。
和
call_user_func_array都是動態呼叫函數的方法,差別在於參數的傳遞方式不同。
方法三、不使用魔法函數
__call🎜來實現🎜🎜只需要修改🎜_call()🎜為🎜trim()🎜函數即可:🎜rrreee🎜函數重點,返回$this 。 🎜🎜🎜🎜更多PHP 三種方式實現鍊式操作 相關文章請關注PHP中文網! 🎜🎜🎜