PhpToken::__toString

(PHP 8)

PhpToken::__toStringReturns the textual content of the token.

說明

public PhpToken::__toString(): string

Returns the textual content of the token.

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

A textual content of the token.

范例

示例 #1 PhpToken::__toString() example

<?php
$token 
= new PhpToken(T_ECHO'echo');
echo 
$token;

以上例程會輸出:

echo

參見

  • token_name() - 獲取提供的 PHP 解析器代號的符號名稱