如何在Silex的路由参数中获取URL

时间:2017-08-31 14:24:55

标签: php url parameters routes silex

如何在Silex-app中传递URL?

我给出的规范是:

http://mysilex.app/http://anotherurl.com

所以,我想在我的应用程序中使用它:

$app->get('/{url}', function ($url) {
  //do awesome things with $url(=http://anotherurl.com)
  return $url;
});

Silex可以吗?

1 个答案:

答案 0 :(得分:0)

.*参数

设置url模式
$app->get('/{url}', function ($url) {
  //do awesome things with $url(=http://anotherurl.com)
  return $url;
})
->assert('url', '.*');