PHP 클래스 eZ\Publish\Core\MVC\Symfony\Routing\SimplifiedRequest

상속: extends eZ\Publish\API\Repository\Values\ValueObject
파일 보기 프로젝트 열기: ezsystems/ezpublish-kernel 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$headers array Hash of request headers.
$host string The host name.
$languages array The languages are ordered in the user browser preferences.
$pathinfo string The path info always starts with a /.
$port string The port the request is made on.
$queryParams array Array of parameters extracted from the query string.
$scheme string The request scheme (http or https).

공개 메소드들

메소드 설명
__sleep ( )
fromUrl ( string $url ) : SimplifiedRequest Constructs a SimplifiedRequest object from a standard URL (http://www.example.com/foo/bar?queryParam=value).
setHeaders ( array $headers )
setHost ( string $host )
setLanguages ( array $languages )
setPathinfo ( string $pathinfo )
setPort ( string $port )
setQueryParams ( array $queryParams )
setScheme ( string $scheme )

메소드 상세

__sleep() 공개 메소드

public __sleep ( )

fromUrl() 공개 정적인 메소드

Constructs a SimplifiedRequest object from a standard URL (http://www.example.com/foo/bar?queryParam=value).
public static fromUrl ( string $url ) : SimplifiedRequest
$url string
리턴 SimplifiedRequest

setHeaders() 공개 메소드

public setHeaders ( array $headers )
$headers array

setHost() 공개 메소드

public setHost ( string $host )
$host string

setLanguages() 공개 메소드

public setLanguages ( array $languages )
$languages array

setPathinfo() 공개 메소드

public setPathinfo ( string $pathinfo )
$pathinfo string

setPort() 공개 메소드

public setPort ( string $port )
$port string

setQueryParams() 공개 메소드

public setQueryParams ( array $queryParams )
$queryParams array

setScheme() 공개 메소드

public setScheme ( string $scheme )
$scheme string

프로퍼티 상세

$headers 보호되어 있는 프로퍼티

Hash of request headers.
protected array $headers
리턴 array

$host 보호되어 있는 프로퍼티

The host name.
protected string $host
리턴 string

$languages 보호되어 있는 프로퍼티

The languages are ordered in the user browser preferences.
protected array $languages
리턴 array

$pathinfo 보호되어 있는 프로퍼티

The path info always starts with a /.
protected string $pathinfo
리턴 string

$port 보호되어 있는 프로퍼티

The port the request is made on.
protected string $port
리턴 string

$queryParams 보호되어 있는 프로퍼티

Array of parameters extracted from the query string.
protected array $queryParams
리턴 array

$scheme 보호되어 있는 프로퍼티

The request scheme (http or https).
protected string $scheme
리턴 string