时间:2021-07-01 10:21:17 帮助过:4人阅读
?
?
define() 函数定义一个常量。
常量类似变量,不同之处在于:
语法:
?
define(name,value,case_insensitive)
?
name | 必需。规定常量的名称。 |
value | 必需。规定常量的值。 |
case_insensitive | 可选。规定常量的名称是否对大小写敏感。 若设置为 true,则对大小写不敏感。默认是 false(大小写敏感)。 |
定义一个大小写敏感的常量:
define("GREETING","Hello world!");echo constant("GREETING");?>
输出:
Hello world!
定义一个大小写不敏感的常量:
define("GREETING","Hello world!",TRUE);echo constant("greeting");?>
输出:
Hello world!
?
?