路由组件
路由组件将HTTP请求映射到一组配置变量。
开始
作曲家美元需要symfony /路由ob娱乐下载
使用应用程序\控制器\BlogController;使用ob娱乐下载\组件\路由\发电机\UrlGenerator;使用ob娱乐下载\组件\路由\匹配器\UrlMatcher;使用ob娱乐下载\组件\路由\RequestContext;使用ob娱乐下载\组件\路由\路线;使用ob娱乐下载\组件\路由\RouteCollection;美元路线=新路线(“/博客/{蛞蝓}”,(“_controller”= >BlogController::类);美元路线=新RouteCollection();美元路线- >添加(“blog_show”,美元路线);美元上下文=新RequestContext();/ /路由可以匹配路线传入的请求美元匹配器=新UrlMatcher(美元路线,美元上下文);美元参数=美元匹配器- >匹配(“/博客/ lorem ipsum”);/ /参数=[美元/ /“_controller”= >“App \控制器\ BlogController”,/ /“鼻涕虫”= >“回车键”,/ /“_route”= >“blog_show”/ /)/ /路由也可以为一个给定的路线生成url美元发电机=新UrlGenerator(美元路线,美元上下文);美元url=美元发电机- >生成(“blog_show”,(“鼻涕虫”= >“我的博客帖子”]);/ / $ url = /博客/我的博客帖子的