如何在 Silex 中获取路由参数中的 URL
how to get a URL in route parameter in 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 中可以吗?
为 url
参数设置 .*
模式
$app->get('/{url}', function ($url) {
//do awesome things with $url(=http://anotherurl.com)
return $url;
})
->assert('url', '.*');
如何在 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 中可以吗?
为 url
参数设置 .*
模式
$app->get('/{url}', function ($url) {
//do awesome things with $url(=http://anotherurl.com)
return $url;
})
->assert('url', '.*');