constant()函数返回常量的值。它也适用于类常量。
用法:
constant(constant)
参数值:
- constant:它是一个必需值,用于指定常数的值。
返回值:如果定义了常量,则返回常量的值,否则返回NULL。
注意:它适用于PHP 4.0或更高版本。
异常:如果未定义常量,则将引发E_WARNING错误。它会给出运行时警告,而不会终止脚本。
以下是显示constant()函数工作的PHP程序。
示例1:区分大小写
PHP
<?php
// Define a constant
define("Home","Welcome to GeeksforGeeks");
echo constant("Home");
?>
输出:
Welcome to GeeksforGeeks
示例2:不区分大小写
PHP
<?php
// Define a case insensitive constant
define("GFGConstant","True denotes case-insensitive", true);
echo constant("gfgconstant");
?>
输出:
True denotes case-insensitive
相关用法
- PHP constant()用法及代码示例
- underscore.js _.constant()用法及代码示例
- Lodash _.constant()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- PHP fpassthru( )用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
注:本文由纯净天空筛选整理自arorakashish0911大神的英文原创作品 PHP constant() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。