PHP constant() 函数
PHP constant() 函数
实例
返回一个常量的值:
<?php
//define a constant
define("GREETING","Hello you! How are you today?");
echo constant("GREETING");
?>
//define a constant
define("GREETING","Hello you! How are you today?");
echo constant("GREETING");
?>
运行实例 »
定义和用法
constant() 函数返回一个常量的值。
注释: 该函数也适用于 class 常量。
语法
constant(constant)
参数 | 描述 |
---|---|
constant | 必需。规定要检查的常量的名称。 |
技术细节
返回值: | 返回常量的值,如果常量未定义则返回 NULL。 |
---|---|
PHP 版本: | 4+ |
PHP Misc 参考手册
相关文章
- PHP 类型比较
- PHP If Else 语句
- PHP 文件上传
- PHP 异常处理
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_fill() 函数
- PHP array_intersect_ukey() 函数
- PHP array_keys() 函数
- PHP array_merge() 函数
- PHP array_slice() 函数
- PHP compact() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP ksort() 函数
- PHP natcasesort() 函数
- PHP natsort() 函数
- PHP cURL 函数
- PHP 5 Filesystem 函数
- PHP 杂项 函数