探讨php define()函数及defined()函数使用详解

2015-01-24信息快讯网

本篇文章是对php中define()函数及defined()函数的使用进行了详细的分析介绍,需要的朋友参考下

The define() function defines a constant.
define()函数的作用是:定义一个常量。

Constants are much like variables, except for the following differences:
常量[constant]与变量[variable]有很多相似的地方,因此,很容易混淆;下面,我们列举一下常量[constant]与变量[variable]之间的不同点:
    A constant's value cannot be changed after it is set
    一个常量值在指定之后就不可以更改;
    Constant names do not need a leading dollar sign ($)
    设置常量时,不需要在前面加上“$”符号;
    Constants can be accessed regardless of scope
    常量可以被所有范围的域访问;
    Constant values can only be strings and numbers
    常量的值只能是“字符串[string]”和“数字[number]”;

Syntax
语法
define(name,value,case_insensitive)

Parameter
参数
Description
描述
nameRequired. Specifies the name of the constant
必要参数。指定常量的名称
valueRequired. Specifies the value of the constant
必要参数。指定常量的值
case_insensitiveOptional. 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

Example 1
案例1
Define a case-sensitive constant:
指定一个常量(区分大小写):

<?phpdefine("GREETING","Hello you! How are you today?");echo constant("GREETING");?>

The output of the code above will be:
上述代码将输出下面的结果:
Hello you! How are you today?

Example 2
案例2
Define a case-insensitive constant:
指定一个常量(不区分大小写):
<?phpdefine("GREETING","Hello you! How are you today?",TRUE);echo constant("greeting");?>

The output of the code above will be:
上述代码将输出下面的结果:
Hello you! How are you today?

The defined() function checks whether a constant exists.
defined()函数的作用是:检查一个常量是否存在。

Returns TRUE if the constant exists, or FALSE otherwise.
如果该常量存在,则返回True;如果不存在,则返回False。
Syntax
语法

defined(name)

Parameter
参数
Description
描述
nameRequired. Specifies the name of the constant to check
必要参数。指定常量对象的名称

Example
案例

<?phpdefine("GREETING","Hello you! How are you today?");echo defined("GREETING");?> 

The output of the code above will be:
上述代码将输出下面的结果:
1

codeigniter使用技巧批量插入数据实例方法分享
php输入流php://input使用示例(php发送图片流到服务器)
php使用filter过滤器验证邮箱 ipv6地址 url验证
php制作unicode解码工具(unicode编码转换器)代码分享
linux实现php定时执行cron任务详解
php calender(日历)二个版本代码示例(解决2038问题)
php安装xdebug/php安装pear/phpunit详解步骤(图)
thinkphp的CURD和查询方式介绍
解决file_get_contents无法请求https连接的方法
phpstrom使用xdebug配置方法
浅析echo(),print(),print_r(),return之间的区别
PHP echo,print,printf,sprintf函数之间的区别与用法详解
PHP上传文件时文件过大$_FILES为空的解决方法
php file_get_contents抓取Gzip网页乱码的三种解决方法
php define的第二个参数使用方法
关于php程序报date()警告的处理(date_default_timezone_set)
解析php中static,const与define的使用区别
解析php中const与define的应用区别
php缩放图片(根据宽高的等比例缩放)实例介绍
如何用php获取程序执行的时间
linux环境apache多端口配置虚拟主机的方法深入介绍
windows环境下php配置memcache的具体操作步骤
PHP rawurlencode与urlencode函数的深入分析
解析dedeCMS验证码的实现代码
探讨php中header的用法详解
强烈声明: 不要使用(include/require)_once
PHP使用DES进行加密与解密的方法详解
解析如何屏蔽php中的phpinfo()函数
探讨file_get_contents与curl效率及稳定性的分析
深入理解require与require_once与include以及include_once的区别
深入php define()函数以及defined()函数的用法详解
深入php函数file_get_contents超时处理的方法详解
详解PHP内置访问资源的超时时间 time_out file_get_contents read_file
基于Zend的Config机制的应用分析
PHP提示Notice: Undefined variable的解决办法
php提示undefined index的几种解决方法
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
©2014-2024 dbsqp.com