PHP constant() 函数定义和用法语法提示和注释例子PHP constant() 函数定义和用法constant() 函数返回常量的值。 语法constant(constant) 参数 描述 constant 必需。规定要检查的常量的名称。 提示和注释注释:该函数仅适用于 class 常量。 例子<?php//定义一个常量define("GREETING","Hello world!"); echo constant("GREETING");?> 输出: Hello world!