(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Returns the textual content of the token.
Această funcție nu are parametri.
A textual content of the token.
Example #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
Exemplele de mai sus vor afișa:
echo