PHP 클래스 Symfony\Component\HttpFoundation\RequestMatcher

저자: Fabien Potencier ([email protected])
상속: implements Symfony\Component\HttpFoundation\RequestMatcherInterface
파일 보기 프로젝트 열기: pmjones/php-framework-benchmarks 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$attributes
$host
$ip
$methods
$path

공개 메소드들

메소드 설명
matchAttribute ( string $key, string $regexp ) Adds a check for request attribute.
matchHost ( string $regexp ) Adds a check for the URL host name.
matchIp ( string $ip ) Adds a check for the client IP.
matchMethod ( $method ) Adds a check for the HTTP method.
matchPath ( string $regexp ) Adds a check for the URL path info.
matches ( Request $request )

보호된 메소드들

메소드 설명
checkIp ( $ip )

메소드 상세

checkIp() 보호된 메소드

protected checkIp ( $ip )

matchAttribute() 공개 메소드

Adds a check for request attribute.
public matchAttribute ( string $key, string $regexp )
$key string The request attribute name
$regexp string A Regexp

matchHost() 공개 메소드

Adds a check for the URL host name.
public matchHost ( string $regexp )
$regexp string A Regexp

matchIp() 공개 메소드

Adds a check for the client IP.
public matchIp ( string $ip )
$ip string A specific IP address or a range specified using IP/netmask like 192.168.1.0/24

matchMethod() 공개 메소드

Adds a check for the HTTP method.
public matchMethod ( $method )

matchPath() 공개 메소드

Adds a check for the URL path info.
public matchPath ( string $regexp )
$regexp string A Regexp

matches() 공개 메소드

public matches ( Request $request )
$request Request

프로퍼티 상세

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

protected $attributes

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

protected $host

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

protected $ip

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

protected $methods

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

protected $path