PHP 클래스 SqlParser\Components\Condition

저자: Dan Ungureanu ([email protected])
상속: extends SqlParser\Component
파일 보기 프로젝트 열기: phpmyadmin/sql-parser 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$ALLOWED_KEYWORDS array List of allowed reserved keywords in conditions.
$DELIMITERS array Logical operators that can be used to delimit expressions.
$expr string The condition.
$identifiers array Identifiers recognized.
$isOperator boolean Whether this component is an operator.

공개 메소드들

메소드 설명
__construct ( string $expr = null ) Constructor.
build ( Condition[] $component, array $options = [] ) : string
parse ( Parser $parser, TokensList $list, array $options = [] ) : Condition[]

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( string $expr = null )
$expr string The condition or the operator.

build() 공개 정적인 메소드

public static build ( Condition[] $component, array $options = [] ) : string
$component Condition[] The component to be built.
$options array Parameters for building.
리턴 string

parse() 공개 정적인 메소드

public static parse ( Parser $parser, TokensList $list, array $options = [] ) : Condition[]
$parser SqlParser\Parser The parser that serves as context.
$list SqlParser\TokensList The list of tokens that are being parsed.
$options array Parameters for parsing.
리턴 Condition[]

프로퍼티 상세

$ALLOWED_KEYWORDS 공개적으로 정적으로 프로퍼티

List of allowed reserved keywords in conditions.
public static array $ALLOWED_KEYWORDS
리턴 array

$DELIMITERS 공개적으로 정적으로 프로퍼티

Logical operators that can be used to delimit expressions.
public static array $DELIMITERS
리턴 array

$expr 공개적으로 프로퍼티

The condition.
public string $expr
리턴 string

$identifiers 공개적으로 프로퍼티

Identifiers recognized.
public array $identifiers
리턴 array

$isOperator 공개적으로 프로퍼티

Whether this component is an operator.
public bool $isOperator
리턴 boolean