0
私は、メソッド名またはauthentification
メソッドで呼び出されたURLをsilexクラスで取得しようとしています。Silexで呼び出されたメソッドを知る方法
この私がコネクト機能に私のメソッドを呼び出す方法:私はと呼ばれる方法を取得したい真偽関数を呼んでいるすべてのメソッドの前に
$controllers->get('/list/reviews/', array($this, 'actionAllReviews'))
->before(array($this, 'controlerAuthentification'));
。私の場合はactionAllReviews
または/list/reviews/
です。
public function controlerAuthentification(Request $request, Application $app)
{
if(!$this->getClient()){
$app->abort(404,'Wrong client informations');
}
//How can I get the information here ?
}
ありがとうございます。その作業! – KubiRoazhon