我将使用Slim 框架。似乎它将是一个文件中的所有内容。我不希望 PHP 编译所有内容。我该如何拆分它们?
例如我有
$app->get('/articles/:id', function ($id) use ($app) { })
$app->get('/profiles/:id', function ($id) use ($app) { })
$app->get('/messages/:id', function ($id) use ($app) { })
$app->get('/articles', function ($id) use ($app) { })
$app->get('/search/:foo', function ($id) use ($app) { })
$app->delete('/message/:id', function ($id) use ($app) { })
我应该放入include
以便{}
只包含一个文件吗?