PHP 8.4.0 RC4 available for testing

The Parle\Token class

(PECL parle >= 0.5.2)

Introdução

This class represents a token. Lexer returns instances of this class.

Resumo da classe

class Parle\Token {
/* Constantes */
const int EOI = 0;
const int UNKNOWN = -1;
const int SKIP = -2;
/* Propriedades */
public int $id;
public string $value;
/* Métodos */
}

Propriedades

id

Token id.

value

Token value.

Constantes pré-definidas

Parle\Token::EOI

End of input token id.

Parle\Token::UNKNOWN

Unknown token id.

Parle\Token::SKIP

Skip token id.

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top