PHP 클래스 SqlParser\Token

파일 보기 프로젝트 열기: phpmyadmin/sql-parser 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$flags integer The flags of this token.
$position integer The position in the initial string where this token started.
$token string The token it its raw string representation.
$type integer The type of this token.
$value mixed The value this token contains (i.e. token after some evaluation)

공개 메소드들

메소드 설명
__construct ( string $token, integer $type, integer $flags ) Constructor.
extract ( ) : mixed Does little processing to the token to extract a value.
getInlineToken ( ) : string Converts the token into an inline token by replacing tabs and new lines.

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( string $token, integer $type, integer $flags )
$token string The value of the token.
$type integer The type of the token.
$flags integer The flags of the token.

extract() 공개 메소드

If no processing can be done it will return the initial string.
public extract ( ) : mixed
리턴 mixed

getInlineToken() 공개 메소드

Converts the token into an inline token by replacing tabs and new lines.
public getInlineToken ( ) : string
리턴 string

프로퍼티 상세

$flags 공개적으로 프로퍼티

The flags of this token.
public int $flags
리턴 integer

$position 공개적으로 프로퍼티

The position in the initial string where this token started.
public int $position
리턴 integer

$token 공개적으로 프로퍼티

The token it its raw string representation.
public string $token
리턴 string

$type 공개적으로 프로퍼티

The type of this token.
public int $type
리턴 integer

$value 공개적으로 프로퍼티

The value this token contains (i.e. token after some evaluation)
public mixed $value
리턴 mixed