PHP 8.4.2 Released!

The Dom\TokenList class

(PHP 8 >= 8.4.0)

Einführung

Represents a set of tokens in an attribute (e.g. class names).

Klassenbeschreibung

final class Dom\TokenList implements IteratorAggregate, Countable {
/* Eigenschaften */
public readonly int $length;
public string $value;
/* Methoden */
public add(string ...$tokens): void
public contains(string $token): bool
public count(): int
public item(int $index): ?string
public remove(string ...$tokens): void
public replace(string $token, string $newToken): bool
public supports(string $token): bool
public toggle(string $token, ?bool $force = null): bool
}

Eigenschaften

length
The number of tokens.
value
The value of the attribute linked to this object.

Anmerkungen

Hinweis: Die Erweiterung DOM verwendet die UTF-8-Kodierung, wenn sie mit Methoden oder Eigenschaften arbeitet. Die Parser-Methoden erkennen die Kodierung automatisch oder erlauben es dem Aufrufer, eine Kodierung anzugeben.

Hinweis: Tokens in the list can be accessed by array syntax.

Inhaltsverzeichnis

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top