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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。