(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Esta función no tiene parámetros.
A textual content of the token.
Ejemplo #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
El resultado de los ejemplos sería:
echo