目录

PHP constant() 函数

❮ PHP 其他参考

示例

返回常量的值:

<?php
//define a constant
define("GREETING","Hello you! How are you today?");

echo constant("GREETING");
?>
亲自试一试 »

定义和用法

Constant() 函数返回常量的值。

笔记:此函数也适用于类常量。


语法

constant( constant)

参数值

Parameter Description
constant Required. Specifies the name of the constant to check

技术细节

返回值: 返回常量的值,如果常量未定义则返回 NULL
PHP 版本: 4+

❮ PHP 其他参考