PHP 클래스 Adldap\Query\Bindings\Where

상속: extends AbstractBinding
파일 보기 프로젝트 열기: adldap2/adldap2 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$field string The field of the where binding.
$operator string The operator of the where binding.
$value string The value of the where binding.

공개 메소드들

메소드 설명
__construct ( string $field, string $operator, string $value ) Constructor.
getField ( ) : string Returns the where bindings field.
getOperator ( ) : string Returns the where bindings operator.
getValue ( ) : string Returns the where bindings value.

보호된 메소드들

메소드 설명
validateOperator ( string $operator ) : string Retrieves an operator from the available operators.

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( string $field, string $operator, string $value )
$field string
$operator string
$value string

getField() 공개 메소드

Returns the where bindings field.
public getField ( ) : string
리턴 string

getOperator() 공개 메소드

Returns the where bindings operator.
public getOperator ( ) : string
리턴 string

getValue() 공개 메소드

Returns the where bindings value.
public getValue ( ) : string
리턴 string

validateOperator() 보호된 메소드

Throws an AdldapException if no operator is found.
protected validateOperator ( string $operator ) : string
$operator string
리턴 string

프로퍼티 상세

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

The field of the where binding.
protected string $field
리턴 string

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

The operator of the where binding.
protected string $operator
리턴 string

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

The value of the where binding.
protected string $value
리턴 string