【发布时间】:2017-10-16 00:13:17
【问题描述】:
我在 Slim-Skeleton routes.php 中遇到了奇怪的方括号
$app->get('/[{name}]', function (Request $request, Response $response, array $args) {
// Sample log message
$this->logger->info("Slim-Skeleton '/' route");
// Render index view
return $this->renderer->render($response, 'index.phtml', $args);
});
为什么要使用方括号?我试图查看文档,但它什么也没给我。
【问题讨论】: