如何在Silex框架中调用另一条路径

时间:2016-02-23 05:15:37

标签: php silex

我正在使用Silex框架并需要调用

$app->get('/users/')

$app->get('/user/create/{username}'
创建新用户后

。我该怎么办?

以下是我的示例代码:

$app->get('/users/', function(Application $app) {
  ....
});

$app->get('/user/create/{username}', function(Application $app, $username) {
  ....
  **redirect to  $app->get('/users/')**
});

1 个答案:

答案 0 :(得分:0)

得到了答案!

return $app->redirect('/users/');