(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Cette fonction ne contient aucun paramètre.
A textual content of the token.
Exemple #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
Les exemples ci-dessus vont afficher :
echo