class Token
Represents a Token.
Constants
EOF_TYPE | |
NAME_TYPE | |
NUMBER_TYPE | |
STRING_TYPE | |
OPERATOR_TYPE | |
PUNCTUATION_TYPE |
Properties
$value | |||
$type | |||
$cursor |
Methods
__construct(int $type, string $value, int $cursor) Constructor. | ||
string | __toString() Returns a string representation of the token. | |
bool | test(array|int $type, string|null $value = null) Tests the current token for a type and/or a value. |
Details
__construct(int $type, string $value, int $cursor)
Constructor.
string __toString()
Returns a string representation of the token.
bool test(array|int $type, string|null $value = null)
Tests the current token for a type and/or a value.
Please login to continue.