PHP 杂项函数
constant() 函数返回常量的值。
constant(constant)
注释:该函数仅适用于 class 常量。
<?php //定义一个常量 define("GREETING","Hello world!"); echo constant("GREETING"); ?>
constant("GREETING")
输出:
Hello world!
Search: