메소드 | 설명 | |
---|---|---|
__construct ( Symfony\Component\HttpKernel\KernelInterface $kernel ) | ||
getDomain ( ) : string | Get the domain | |
getHost ( ) : string | Get the host | |
getPage ( integer $index ) : mixed | Get a page specified by the given index | |
getPages ( ) : array | Return all the pages | |
getParameter ( mixed $index, string $type = 'string', mixed $defaultValue = null ) : mixed | Get a parameter specified by the given index The function will return null if the key is not available By default we will cast the return value into a string, if you want something else specify it by passing the wanted type. | |
getParameters ( boolean $includeGET = true ) : array | Return all the parameters | |
getQueryString ( ) : string | Get the query string | |
hasParameter ( mixed $index ) : boolean | Check if a certain ($_GET) parameter exists |
메소드 | 설명 | |
---|---|---|
processQueryString ( ) | Process the query string | |
setPages ( array $pages = [] ) | Set the pages | |
setParameters ( array $parameters = [] ) | Set the parameters |
public __construct ( Symfony\Component\HttpKernel\KernelInterface $kernel ) | ||
$kernel | Symfony\Component\HttpKernel\KernelInterface |
public getParameter ( mixed $index, string $type = 'string', mixed $defaultValue = null ) : mixed | ||
$index | mixed | The index of the parameter. |
$type | string | The return type, possible values are: bool, boolean, int, integer, float, double, string, array. |
$defaultValue | mixed | The value that should be returned if the key is not available. |
리턴 | mixed |
public getParameters ( boolean $includeGET = true ) : array | ||
$includeGET | boolean | Should the GET-parameters be included? |
리턴 | array |
public hasParameter ( mixed $index ) : boolean | ||
$index | mixed | The index of the parameter. |
리턴 | boolean |