如何在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可以吗?
答案 0 :(得分:0)
为.*
参数
url
模式
$app->get('/{url}', function ($url) {
//do awesome things with $url(=http://anotherurl.com)
return $url;
})
->assert('url', '.*');