定义一个区分大小写的常量:
<?php
define("GREETING","Hello you! How are you today?");
echo constant("GREETING");
?>
亲自试一试 »
Define() 函数定义一个常量。
常量与变量非常相似,但存在以下差异:
define(
name,value,case_insensitive)
Parameter | Description |
---|---|
name | Required. Specifies the name of the constant |
value | Required. Specifies the value of the constant. |
case_insensitive | Optional. Specifies whether the constant name should be case-insensitive. Possible values:
|
返回值: | 成功时返回 TRUE,失败时返回 FALSE |
---|---|
PHP 版本: | 4+ |
变更日志: | PHP 7.3:不推荐定义不区分大小写的常量。 PHP 7:value 参数也可以是数组。 PHP 5:value 参数必须是字符串、整数、浮点数、布尔值或 NULL。 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!