PhpToken::__toString
(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Beschreibung
Returns the textual content of the token.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
A textual content of the token.
Beispiele
Beispiel #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
Die obigen Bespiele erzeugen folgende Ausgabe:
echo
Siehe auch
- token_name() - Gibt Bezeichner für ein PHP-Token zurück