我如何在Slim 3 路线中拥有 or-option ?
例如,这是我目前所做的:
// Home page.
$app->get('/', function (Request $request, Response $response, array $args) {
// Get the application settings.
$settings = $this->get('settings');
// Check if the home page class is provided.
... lots of codes
});
$app->get('/home', function (Request $request, Response $response, array $args) {
// Get the application settings.
$settings = $this->get('settings');
// Check if the home page class is provided.
... lots of codes
});
而不是重复这些代码的块,我可以把它们变成一个像:
$app->get('/ or /home', function (Request $request, Response $response, array $args) {
...}