class Token

CSS selector token.

This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect.

Constants

TYPE_FILE_END

TYPE_DELIMITER

TYPE_WHITESPACE

TYPE_IDENTIFIER

TYPE_HASH

TYPE_NUMBER

TYPE_STRING

Methods

__construct(string|null $type, string|null $value, int|null $position)

No description

int|null
getType()

No description

string|null
getValue()

No description

int|null
getPosition()

No description

bool
isFileEnd()

No description

bool
isDelimiter(array $values = array())

No description

bool
isWhitespace()

No description

bool
isIdentifier()

No description

bool
isHash()

No description

bool
isNumber()

No description

bool
isString()

No description

string
__toString()

No description

Details

__construct(string|null $type, string|null $value, int|null $position)

Parameters

string|null $type
string|null $value
int|null $position

int|null getType()

Return Value

int|null

string|null getValue()

Return Value

string|null

int|null getPosition()

Return Value

int|null

bool isFileEnd()

Return Value

bool

bool isDelimiter(array $values = array())

Parameters

array $values

Return Value

bool

bool isWhitespace()

Return Value

bool

bool isIdentifier()

Return Value

bool

bool isHash()

Return Value

bool

bool isNumber()

Return Value

bool

bool isString()

Return Value

bool

string __toString()

Return Value

string