4
我正在編寫自己的構建在Symfony組件之上的PHP框架作爲學習練習。我遵循在http://symfony.com/doc/current/create_framework/index.html找到的教程來創建我的框架。Symfony3搭建註釋路線
我現在想使用註釋將我的路線與我的控制器連接起來。目前,我有以下代碼設置路由:
// Create the route collection
$routes = new RouteCollection();
$routes->add('home', new Route('/{slug}', [
'slug' => '',
'_controller' => 'Controllers\HomeController::index',
]));
// Create a context using the current request
$context = new RequestContext();
$context->fromRequest($request);
// Create the url matcher
$matcher = new UrlMatcher($routes, $context);
// Try to get a matching route for the request
$request->attributes->add($matcher->match($request->getPathInfo()));
我所遇到下面的類加載註釋,但我不知道如何使用它:
我如果有人能幫忙,我會很感激。
謝謝