gpt4 book ai didi

symfony - 从 $app->before filter 中获取当前 Route 对象?

转载 作者:行者123 更新时间:2023-12-04 02:43:16 26 4
gpt4 key购买 nike

使用 Silex ,如何从 before 过滤器中获取当前 Route 对象?例如,

$app->before(function() use ($app) {
// need to access Route for matched URL here
});

我需要整个对象,而不仅仅是名称。

最佳答案

未测试,但这应该有效。

$app->before(function(Request $req, Application $app) {
$route = $app['routes']->get($req->get('_route'));
});

只是好奇,为什么需要 Route 对象?

关于symfony - 从 $app->before filter 中获取当前 Route 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19416232/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com