如何定义使用相同匿名回调的多个路由?
$app->get('/first_route',function() { //Do stuff }); $app->get('/second_route',function() { //Do same stuff });
我知道我可以使用一个可以工作的函数的引用,但是我更喜欢使用匿名函数来解决其他代码库的一个解决方案.
所以基本上,我正在寻找的是一种做这样的事情:
$app->get(['/first_route','/second_route'],function() { //Do same stuff for both routes });
〜OR〜
$app->get('/first_route',function() use($app) { $app->get('/second_route');//Without redirect });
谢谢.
您可以使用条件来实现.我们用它来翻译URL.
原文链接:https://www.f2er.com/php/132625.html$app->get('/:route',function() { //Do same stuff for both routes })->conditions(array("route" => "(first_route|second_route)"));