企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# Class **Phalcon\Mvc\Router\Group**[](# "永久链接至标题") *implements*[*Phalcon\Mvc\Router\GroupInterface*](#) Helper class to create a group of routes with common attributes ~~~ <?php $router = new \Phalcon\Mvc\Router(); //Create a group with a common module and controller $blog = new Group(array( 'module' => 'blog', 'controller' => 'index' )); //All the routes start with /blog $blog->setPrefix('/blog'); //Add a route to the group $blog->add('/save', array( 'action' => 'save' )); //Add another route to the group $blog->add('/edit/{id}', array( 'action' => 'edit' )); //This route maps to a controller different than the default $blog->add('/blog', array( 'controller' => 'about', 'action' => 'index' )); //Add the group to the router $router->mount($blog); ~~~ ### Methods[](# "永久链接至标题") public **__construct** ([*unknown* $paths]) Phalcon\Mvc\Router\Group constructor public **setHostname** (*unknown* $hostname) Set a hostname restriction for all the routes in the group public **getHostname** () Returns the hostname restriction public **setPrefix** (*unknown* $prefix) Set a common uri prefix for all the routes in this group public **getPrefix** () Returns the common prefix for all the routes public **beforeMatch** (*unknown* $beforeMatch) Sets a callback that is called if the route is matched. The developer can implement any arbitrary conditions here If the callback returns false the route is treated as not matched public **getBeforeMatch** () Returns the ‘before match' callback if any public **setPaths** (*unknown* $paths) Set common paths for all the routes in the group public **getPaths** () Returns the common paths defined for this group public **getRoutes** () Returns the routes added to the group public **add** (*unknown* $pattern, [*unknown* $paths], [*unknown* $httpMethods]) Adds a route to the router on any HTTP method ~~~ <?php router->add('/about', 'About::index'); ~~~ public [*Phalcon\Mvc\Router\Route*](#)**addGet** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is GET public [*Phalcon\Mvc\Router\Route*](#)**addPost** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is POST public [*Phalcon\Mvc\Router\Route*](#)**addPut** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is PUT public [*Phalcon\Mvc\Router\Route*](#)**addPatch** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is PATCH public [*Phalcon\Mvc\Router\Route*](#)**addDelete** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is DELETE public [*Phalcon\Mvc\Router\Route*](#)**addOptions** (*string* $pattern, [*string/array* $paths]) Add a route to the router that only match if the HTTP method is OPTIONS public [*Phalcon\Mvc\Router\Route*](#)**addHead** (*string* $pattern, [*string/array* $paths]) Adds a route to the router that only match if the HTTP method is HEAD public **clear** () Removes all the pre-defined routes protected **_addRoute** (*unknown* $pattern, [*unknown* $paths], [*unknown* $httpMethods]) Adds a route applying the common attributes | - [索引](# "总目录") - [下一页](# "Class Phalcon\Mvc\Router\Route") | - [上一页](# "Class Phalcon\Mvc\Router\Exception") | - [API Indice](#) »