您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1718 复制当前网址

constant



PHP constant() 函数

定义和用法

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


语法

constant(constant)


参数描述
constant必需。规定要检查的常量的名称。


提示和注释

注释:该函数仅适用于 class 常量。


例子

<?php//定义一个常量define("GREETING","Hello world!");

echo constant("GREETING");
?>

输出:

Hello world!


文章来源:http://liqingbo.com/blog-926.html

上一篇:define

下一篇:connection_status

评论