I need to compose URLs with parameters that can contain a slash /. For example, the classic /hello/{username}
route. By default, /hello/Fabien
will match this route but not /hello/Fabien/Kris
. I would to ask you how can I do it in Slim 3 framework.
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
You can just as well use
$args
:Route placeholders: