define() 函数定义了一个常量。
用法
define(const_name,value,case_insensitive)
参数
const_name− 常量的名称。
value− 常数值。
case_insensitive− 常量名应不区分大小写。
返回
define() 函数在成功时返回 true 或在失败时返回 false。
示例
以下是定义常量的示例。
<?php
define("message","This is it!");
echo constant("message");
?>
输出
以下是输出。
This is it!
相关用法
- PHP defined()用法及代码示例
- PHP debug_print_backtrace()用法及代码示例
- PHP decbin()用法及代码示例
- PHP decoct()用法及代码示例
- PHP debug_backtrace()用法及代码示例
- PHP dechex()用法及代码示例
- PHP debug_zval_dump()用法及代码示例
- PHP deg2rad()用法及代码示例
- PHP decoct( )用法及代码示例
- PHP decbin( )用法及代码示例
- PHP dechex( )用法及代码示例
- PHP disk_total_space()用法及代码示例
- PHP disk_total_space( )用法及代码示例
- PHP dir()用法及代码示例
- PHP date_default_timezone_set()用法及代码示例
- PHP date_create_immutable()用法及代码示例
- PHP date_get_last_errors()用法及代码示例
- PHP date_parse()用法及代码示例
注:本文由纯净天空筛选整理自Chandu yadav大神的英文原创作品 define() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。