class CompiledRoute implements Serializable
CompiledRoutes are returned by the RouteCompiler class.
Methods
__construct(string $staticPrefix, string $regex, array $tokens, array $pathVariables, string|null $hostRegex = null, array $hostTokens = array(), array $hostVariables = array(), array $variables = array()) Constructor. | ||
serialize() {@inheritdoc} | ||
unserialize($serialized) {@inheritdoc} | ||
string | getStaticPrefix() Returns the static prefix. | |
string | getRegex() Returns the regex. | |
string|null | getHostRegex() Returns the host regex. | |
array | getTokens() Returns the tokens. | |
array | getHostTokens() Returns the host tokens. | |
array | getVariables() Returns the variables. | |
array | getPathVariables() Returns the path variables. | |
array | getHostVariables() Returns the host variables. |
Details
__construct(string $staticPrefix, string $regex, array $tokens, array $pathVariables, string|null $hostRegex = null, array $hostTokens = array(), array $hostVariables = array(), array $variables = array())
Constructor.
serialize()
{@inheritdoc}
unserialize($serialized)
{@inheritdoc}
string getStaticPrefix()
Returns the static prefix.
string getRegex()
Returns the regex.
string|null getHostRegex()
Returns the host regex.
array getTokens()
Returns the tokens.
array getHostTokens()
Returns the host tokens.
array getVariables()
Returns the variables.
array getPathVariables()
Returns the path variables.
array getHostVariables()
Returns the host variables.
Please login to continue.