TokenIterator deprecated
class TokenIterator
deprecated
Traversing helper.
Properties
array | $tokens | ||
int | $position | ||
array | $ignored |
Methods
No description
Returns current token.
Returns current token value.
Returns next token.
Returns next token value.
Returns all next tokens.
Returns all next tokens until it sees a given token type or value.
Returns concatenation of all next token values.
Returns concatenation of all next tokens until it sees a given token type or value.
Checks the current token.
Checks the next token existence.
Checks the previous token existence.
No description
Moves cursor to next token.
Looks for (first) (not) wanted tokens.
Details
at line 32
__construct(array $tokens)
No description
at line 42
array|null
currentToken()
Returns current token.
at line 51
string|null
currentValue()
Returns current token value.
at line 61
array|null
nextToken(int|string ...$args)
Returns next token.
at line 71
string|null
nextValue(int|string ...$args)
Returns next token value.
at line 82
array
nextAll(int|string ...$args)
Returns all next tokens.
at line 93
array
nextUntil(int|string ...$args)
Returns all next tokens until it sees a given token type or value.
at line 103
string
joinAll(int|string ...$args)
Returns concatenation of all next token values.
at line 113
string
joinUntil(int|string ...$args)
Returns concatenation of all next tokens until it sees a given token type or value.
at line 123
bool
isCurrent(int|string ...$args)
Checks the current token.
at line 138
bool
isNext(int|string ...$args)
Checks the next token existence.
at line 148
bool
isPrev(int|string ...$args)
Checks the previous token existence.
at line 157
TokenIterator
reset()
No description
at line 167
protected void
next()
Moves cursor to next token.
at line 177
protected mixed
scan(array $wanted, bool $onlyFirst, bool $advance, bool $strings = false, bool $until = false, bool $prev = false)
Looks for (first) (not) wanted tokens.