PHP 인터페이스 Symfony\Component\Routing\Generator\UrlGeneratorInterface

The constants in this interface define the different types of resource references that are declared in RFC 3986: http://tools.ietf.org/html/rfc3986 We are using the term "URL" instead of "URI" as this is more common in web applications and we do not need to distinguish them as the difference is mostly semantical and less technical. Generating URIs, i.e. representation-independent resource identifiers, is also possible.
저자: Fabien Potencier ([email protected])
상속: extends Symfony\Component\Routing\RequestContextAwareInterface
파일 보기 프로젝트 열기: pmjones/php-framework-benchmarks 0 사용 예제들

공개 메소드들

메소드 설명
generate ( string $name, mixed $parameters = [], boolean $absolute = false ) : string Generates a URL from the given parameters.

메소드 상세

generate() 공개 메소드

If the generator is not able to generate the url, it must throw the RouteNotFoundException as documented below.
public generate ( string $name, mixed $parameters = [], boolean $absolute = false ) : string
$name string The name of the route
$parameters mixed An array of parameters
$absolute boolean Whether to generate an absolute URL
리턴 string The generated URL