把你实际的调用操做录下来,而后在你想要的地方从新调用
和匿名函数的做用基本同样,暂存你的调用操做 通常用于链式调用
, 而后实际做用于你想要操做的对象上面好像和没说同样php
假如 laravel
项目用到了 仓库模式
, 而后对于比较复杂的查询条件,通常状况下有三种操做laravel
仓库类
里面实现解析如今能够对第三种方法进行优化,传入一个下面代码里的 CallEcho
对象git
//控制器里 $callEcho = (new CallEcho())->where("username", "马云")->where("is_boss", 1)->first(); $fubao = (new UserRepository)->first($callEcho); //仓库类 class UserRepository{ public function first(CallEcho $callEcho){ return $callEcho->invoke(new User()); } }
看着和匿名函数差很少,可是 CallEcho
能够被继承来实现些接口,继承后还能够对查询条件进行一些操做,好比过滤什么的。用匿名函数的话,彻底就看调用方的良心了。github
最重要的是不传对象传函数叫什么面对对象数组
class CallEcho { protected $callable = null; public function __construct() { //callable 初始化 $this->seed(); } protected function seed(){ $this->callable = $this; } public function __invoke($obj) { return $obj; } public function __call($name, $arguments) { $current = $this->callable; /** * 每产生__call,就往callable上面裹一层 */ $this->callable = function($obj) use($name, $arguments, $current){ return call_user_func_array($current, [$obj])->{$name}(...$arguments); }; return $this; } //做用于真正的对象上面 public function invoke($obj){ return call_user_func_array($this->callable, [$obj]); } }
简单的测试 以及 使用函数
class TestCallEcho{ protected $called = []; public function __call($name, $arguments) { $this->called[] = [$name, $arguments]; return $this; } public function end(){ $this->called[] = "end"; return $this; } public function getCalled(){ return $this->called; } } function testArrayEq($array1, $array2){ if(count($array1) !== count($array2)){ return false; } foreach ($array1 as $index => $value1){ if(!isset($array2[$index])){ return false; } $value2 = $array2[$index]; if(is_array($value1) && is_array($value2)){ if(!testArrayEq($value1, $value2)){ return false; }else{ //继续判断 } }else{ if($value1 !== $value2){ return false; } } } return true; } function testTestArrayEq(){ $array1 = [1, 2]; $array2 = [1, 3]; $array3 = [1, 2, 3]; assert(testArrayEq($array1, $array2) == false); assert(testArrayEq($array1, $array3) == false); assert(testArrayEq($array1, $array1) == true); } testTestArrayEq(); $obj = new \stdClass(); $callEcho = new CallEcho(); /*************重点开始****************/ /** @var CallEcho $callEcho */ $callEcho = $callEcho->testNumber(1)->testString("myname")->testObj($obj)->testMulti(1, "myname")->testMulti2("1", $obj)->end(); /** @var TestCallEcho $testCallEcho */ $testCallEcho = $callEcho->invoke(new TestCallEcho()); /************重点结束****************/ //基本上和这个做用同样 $a = function($obj){ $obj->testNumber(1)->testString("myname")->testObj($obj)->testMulti(1, "myname")->testMulti2("1", $obj)->end(); }; $called = $testCallEcho->getCalled(); $eq = testArrayEq($called, [ ["testNumber", [1]], ["testString", ["myname"]], ["testObj", [$obj]], ["testMulti", [1, "myname"]], ["testMulti2", ["1", $obj]], "end" ]); assert($eq);
灵感来源于slim3 中间件 的实现测试