(PHP 8)
PhpToken::__toString — Returns the textual content of the token.
Returns the textual content of the token.
此函數(shù)沒有參數(shù)。
A textual content of the token.
示例 #1 PhpToken::__toString() example
<?php
$token = new PhpToken(T_ECHO, 'echo');
echo $token;
以上例程會(huì)輸出:
echo