difine()函数的作用,定义一个常量;
常量的特点
1、一个常量值在制定后就不可以被修改
2、设置常量是不需要在前面加$符号;
3、常量可以被所有范围域访问;
4、常量的值只能是字符串或者数字。
语法规则
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. If set to TRUE, the constant will be case-insensitive. Default is FALSE (case-sensitive)
可选参数。指定常量的名称是否是不区分大小写的[case-insensitive]。如果设置为True,则不区分字母大小写;如果设置为False,则区分字母大小写。默认值是:False
eg:
<?phpdefine("GREETING","Hello you! How are you today?",TRUE);echo constant("greeting");?> 
上述代码将输出下面的结果:
复制代码代码如下:
Hello you! How are you today? 
define的基本用法
defined() 用于检测一个常量是否存在
语法
复制代码代码如下:
defined(name) 
Parameter
参数
Description
描述
name
Required. Specifies the name of the constant to check
必要参数。指定常量对象的名称
Example
案例
复制代码代码如下:
<?phpdefine("GREETING","Hello you! How are you today?");echo defined("GREETING");?> 

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。