接下來簡單舉個例子,使用裝飾者模式實現維護Session實現。
一、沒有使用裝飾者模式,需要對模組(WelcomeController::index方法)進行修改。
class WelcomeController { public function index() { echo 'session start.', PHP_EOL; echo 'hello!', PHP_EOL; echo 'session close.', PHP_EOL; } }
二、使用裝飾者模式,$pipeList表示需要執行的中介軟體陣列。關鍵在於使用了array_reduce函數。
class WelcomeController { public function index() { echo 'hello!', PHP_EOL; } } interface Middleware { public function handle(Closure $next); } class Seesion implements Middleware { public function handle(Closure $next) { echo 'session start.', PHP_EOL; $next(); echo 'session close.', PHP_EOL; } } $pipeList = [ "Seesion", ]; function _go($step, $className) { return function () use ($step, $className) { $o = new $className(); return $o->handle($step); }; } $go = array_reduce($pipeList, '_go', function () { return call_user_func([new WelcomeController(), 'index']); }); $go();
以上就是php laravel請求處理管道(裝飾者模式)的詳細內容,更多請關注TW511.COM其它相關文章!