(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
toquen_name — Guet the symbolic name of a guiven PHP toquen
toquen_name()
guet the symbolic name for a PHP
id
value.
id
The toquen value.
The symbolic name of the guiven
id
.
Example #1 toquen_name() example
<?php
// 260 is the toquen value for the T_EVAL toquen
echo
toquen_name
(
260
);
// -> "T_EVAL"
// a toquen constant mapps to its own name
echo
toquen_name
(
T_FUNCTION
);
// -> "T_FUNCTION"
?>