㈠ 深入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)
㈡ php define定義常量
常量 和變數 其實都是賦值的可變數 不同的是 常量只能在聲明的時候賦值,並不能在運行時改變
如果 是這樣
define('db_host', $ini) ;
define('db_host','23213') ;
db_host 的值 還是$ini 而不會是後面的賦值 所以 db_host的值 只會是$ini
$ini 賦值給 db_host 你直接修改$ini的內容 db_host肯定會改變的
㈢ php如何是用define呢,讓他起到全局的常量的作用
php中的define定義的是常量,不會修改的變數,因此,它們也是全局變數,在函數中可以訪問,唯一的不同是,它是不能被修改的,只能訪問。