token_name
(PHP 4 >= 4.2.0, PHP 5)
token_name — 获取提供的 PHP 解析器代号的符号名称
说明
string token_name
( int $token
)
token_name() 获取一个 PHP
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"
?>
参见
List of Parser Tokens