PhpToken::__construct

(PHP 8)

PhpToken::__constructReturns a new PhpToken object

Açıklama

final public PhpToken::__construct ( int $id , string $text , int $line = -1 , int $pos = -1 )

Returns a new PhpToken object

Değiştirgeler

id

One of the T_* constants (see Çözümleyici Dizgeciklerinin Listesi), or an ASCII codepoint representing a single-char token.

text

The textual content of the token.

line

The starting line number (1-based) of the token.

pos

The starting position (0-based) in the tokenized string.

Dönen Değerler

Returns a new PhpToken instance.

Ayrıca Bakınız