對象方法鏈?zhǔn)讲僮?/p>
魔法函數(shù) __call(args)
對象調(diào)用不存在的方法的時候,會自動調(diào)用
調(diào)用函數(shù)的方法
call_user_func($function, $arg1, $arg2)
調(diào)用函數(shù)的方法
call_user_func_array($function, [$arg1, $arg2])
調(diào)用函數(shù)的方法
call_user_func_array([$foo, "bar"], ["three", "four"])
$foo->bar() method with 2 arguments
array_unshift()
函數(shù)用于向數(shù)組插入新元素续搀。新數(shù)組的值將被插入到數(shù)組的開頭。
1 使用魔法函數(shù)__call
結(jié)合call_user_func
來實現(xiàn)
<?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();
2 使用魔法函數(shù)__call
結(jié)合call_user_func_array
來實現(xiàn)
<?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();
3 不使用魔法函數(shù)__call
來實現(xiàn), 重點在于返回$this
指針,方便調(diào)用后者函數(shù)勺拣。
public function trim($t)
{
$this->value = trim($this->value, $t);
return $this;
}