php - Slim 3 - Slash as a part of route parameter -


i need compose urls parameters can contain slash /. example, classic /hello/{username} route. default, /hello/fabien match route not /hello/fabien/kris. ask how can in slim 3 framework.

route placeholders:

for “unlimited” optional parameters, can this:

$app->get('/hello[/{params:.*}]', function ($request, $response, $args) {     $params = explode('/', $request->getattribute('params'));      // $params array of optional segments }); 

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -