RewritingRouter
class RewritingRouter implements RouterInterface, RequestMatcherInterface
Class RewritingRouter
Methods
Sets the request context.
Gets the request context.
No description
Gets the RouteCollection instance associated with this Router.
Generates a URL or path for a specific route based on the given parameters.
Tries to match a URL path with a set of routes.
Tries to match a request with a set of routes.
Details
at line 58
setContext(
RequestContext $context)
Sets the request context.
at line 70
RequestContext
getContext()
Gets the request context.
at line 75
setOption($key, $value)
at line 85
RouteCollection
getRouteCollection()
Gets the RouteCollection instance associated with this Router.
at line 118
string
generate(
string $name,
mixed $parameters = array(),
Boolean|string $referenceType = self::ABSOLUTE_PATH)
Generates a URL or path for a specific route based on the given parameters.
Parameters that reference placeholders in the route pattern will substitute them in the path or host. Extra params are added as query string to the URL.
When the passed reference type cannot be generated for the route because it requires a different host or scheme than the current one, the method will return a more comprehensive reference that includes the required params. For example, when you call this method with $referenceType = ABSOLUTEPATH but the route requires the https scheme whereas the current scheme is http, it will instead return an ABSOLUTEURL with the https scheme and the current host. This makes sure the generated URL matches the route in any case.
If there is no route with the given name, the generator must throw the RouteNotFoundException.
at line 138
array
match(
string $pathinfo)
Tries to match a URL path with a set of routes.
If the matcher can not find information, it must throw one of the exceptions documented below.
at line 156
array
matchRequest(
Request $request)
Tries to match a request with a set of routes.
If the matcher can not find information, it must throw one of the exceptions documented below.