Class Wildcard

Summary

Fully Qualified Name: Zend\Router\Http\Wildcard
Implements: RouteInterface

Description

Wildcard route.

Methods

Name Description Defined By
__construct() Create a new wildcard route. Wildcard
assemble() assemble(): Defined by RouteInterface interface. Wildcard
factory() factory(): defined by RouteInterface interface. Wildcard
getAssembledParams() getAssembledParams(): defined by RouteInterface interface. Wildcard
match() match(): defined by RouteInterface interface. Wildcard

Method Details

__construct()

Create a new wildcard route.

Parameter Name Type Description
$keyValueDelimiter string
$paramDelimiter string
$defaults array

Returns:

assemble()

assemble(): Defined by RouteInterface interface.

Parameter Name Type Description
$params array
$options array

Returns: mixed

factory()

factory(): defined by RouteInterface interface.

Parameter Name Type Description
$options array|\Traversable

Returns: \Wildcard

getAssembledParams()

getAssembledParams(): defined by RouteInterface interface.

Returns: array

match()

match(): defined by RouteInterface interface.

Parameter Name Type Description
$request \Request
$pathOffset int|null

Returns: \RouteMatch|null

Top