PhpToken::__toString
(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Description
Returns the textual content of the token.
Parameters
This function has no parameters.
Return Values
A textual content of the token.
Examples
Example #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
The above examples will output:
echo
See Also
- token_name() - Get the symbolic name of a given PHP token