token_name
token_name
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
token_name - 获取给定PHP令牌的符号名称
描述
string token_name ( int $token )
token_name()
获取PHP token
值的符号名称。
参数
token
token值。
返回值
给定的符号名称token
。
例子
Example #1 token
_
name() example
<?php
// 260 is the token value for the T_EVAL token
echo token_name(260 // -> "T_EVAL"
// a token constant maps to its own name
echo token_name(T_FUNCTION // -> "T_FUNCTION"
?>
← token_get_all