在之前的文章中我們為大家介紹了php中define()的使用,以及php中define()與const的差別,今天為大家繼續介紹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)
#參數 ##Description | 描述|
---|---|
Require | d. Specifies the name of the constant必要參數。指定常數的名稱 |
Required. Specifies the value of the constant | 必要參數。指定常數的值|
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
#Example 1
案例1
##Define a case-sensitive constant:
指定一個常數(區分大小寫):
程式碼如下:
<?phpdefine("GREETING","Hello you! How are you today?");echo constant("GREETING");?>
上述程式碼將輸出下面的結果:
Hello you! How are you today?
案例2
Define a case-insensitive constant:指定一個常數(不區分大小寫):<?phpdefine("GREETING","Hello you! How are you today?",TRUE);echo constant("greeting");?>
上述程式碼將輸出下面的結果:
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)
# Description 描述 | |
---|---|
必要參數。指定常數 | 物件的名稱 | #