Php/docs/function.token-name

来自菜鸟教程
跳转至:导航、​搜索

token_name

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

token_name获取提供的 PHP 解析器代号的符号名称


说明

token_name ( int $token ) : string

token_name() 获取一个 PHP token 的符号名称.


参数

token
解析器代号的值.


返回值

提供的token 的符号名.


范例

Example #1 token_name() example

<?php// 260 is the token value for the T_EVAL tokenecho token_name(260);        // -> "T_EVAL"// a token constant maps to its own nameecho token_name(T_FUNCTION); // -> "T_FUNCTION"?>