PHP 클래스 SqlParser\Components\Reference

상속: extends SqlParser\Component
파일 보기 프로젝트 열기: phpmyadmin/sql-parser 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$REFERENCES_OPTIONS array All references options.
$columns array The referenced columns.
$options OptionsArray The options of the referencing.
$table Expression The referenced table.

공개 메소드들

메소드 설명
__construct ( Expression $table = null, array $columns = [], OptionsArray $options = null ) Constructor.
build ( Reference $component, array $options = [] ) : string
parse ( Parser $parser, TokensList $list, array $options = [] ) : Reference

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( Expression $table = null, array $columns = [], OptionsArray $options = null )
$table Expression The name of the table referenced.
$columns array The columns referenced.
$options OptionsArray The options.

build() 공개 정적인 메소드

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

parse() 공개 정적인 메소드

public static parse ( Parser $parser, TokensList $list, array $options = [] ) : Reference
$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.
리턴 Reference

프로퍼티 상세

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

All references options.
public static array $REFERENCES_OPTIONS
리턴 array

$columns 공개적으로 프로퍼티

The referenced columns.
public array $columns
리턴 array

$options 공개적으로 프로퍼티

The options of the referencing.
public OptionsArray,SqlParser\Components $options
리턴 OptionsArray

$table 공개적으로 프로퍼티

The referenced table.
public Expression,SqlParser\Components $table
리턴 Expression