裝飾者模式在中間件中使用

裝飾者模式在中間件中使用

後盾網php

<?php

namespace App;

interface Middleware
{
    public function handle($next);
}

class Session implements Middleware
{
    public function handle($next)
    {
        echo "<br/>Session Start<br/>";
        $next();
        echo "<br/>Session End<br/>";
    }
}

class Mysql implements Middleware
{
    public function handle($next)
    {
        echo "<br/>Mysql Start<br/>";
        $next();
        echo "<br/>Mysql end<br/>";
    }
}

function run($next, $step)
{
    return function () use ($next, $step) {
        call_user_func_array([new $step, 'handle'], [$next]);
    };
}

$class    = [Session::class, Mysql::class];
$callback = array_reduce($class, 'App\run', function () {
});
$callback();

運行結果sql

Mysql Start

Session Start

Session End

Mysql end
相關文章
相關標籤/搜索