0
SLIM 3 PHPでグループルートから[PHP - SLIM 3 Framework]をルートパラメータを取得しますここで私が使用しています私は</p> <p>をやっているものだ、私はミドルウェアでグループルートパラメータを取得し、問題が生じています
route.php
$app->group('/{lang}', function() use ($container){
//routes ... (ignore the other routes)
})->add(new Middleware($container));
Middleware.php
//middleware.php
class Middleware {
public function __invoke($req, $res, $next)
{
//here is the part which is confusing about how can i get
// {lang} parameter
$req->getAttribute('route')
}
}