Php/func misc constant
来自菜鸟教程
PHP constant()函数
例
返回常量的值:
<?php //define a constant define("GREETING","Hello you! How are you today?"); echo constant("GREETING"); ?>
定义和用法
constant()函数返回常量的值。
注意: 此函数也可用于类常量。
句法
constant(constant)
参数值
参数 | 描述 |
---|---|
constant | 需要。指定要检查的常量的名称 |
技术细节
返回值: | 返回常量的值,如果未定义常量,则返回NULL |
PHP版本: | 4+ |