(1).const用于类成员变量的定义,一经定义,不可修改。define不可用于类成员变量的定义,可用于全局常量。
(2).const可在类中使用,php5.3以后类外边也可以,define不能。
例如:
(4).const采用一个普通的常量名称,define可以采用表达式作为名称。
(5).const只能接受静态的标量,而define可以采用任何表达式。
例如:
例如:
(2).const可在类中使用,php5.3以后类外边也可以,define不能。
class test {
const t002="t002";
define(t001,"t001");//报错,不能这样使用
function test(){
define(t001,"t001");
const t002="t002";<span style="font-family: Arial, Helvetica, sans-serif;">//报错,不能这样使用</span>
}
function a() {
echo t002;
}
}
$t=new test();
$t->a();
输出:
Notice: Use of undefined constant t001 - assumed 't001' in D:\WWW\test\index.php on line 10
Notice: Use of undefined constant t002 - assumed 't002' in D:\WWW\test\index.php on line 13
t002
(3).const不能在条件语句中定义常量。
例如:
if (...){
const FOO = 'BAR'; // 无效的invalid
}
if (...) {
define('FOO', 'BAR'); // 有效的valid
}
(4).const采用一个普通的常量名称,define可以采用表达式作为名称。
const FOO = 'BAR';
for ($i = 0; $i < 32; ++$i) {
define('BIT_' . $i, 1 << $i);
}
(5).const只能接受静态的标量,而define可以采用任何表达式。
例如:
const BIT_5 = 1 << 5; // 无效的invalid
define('BIT_5', 1 << 5); // 有效的valid
(6).const定义的常量时大小写敏感的,而define可通过第三个参数(为true表示大小写不敏感)来指定大小写是否敏感。
例如:
define('FOO', 'BAR', true);
echo FOO; // BAR
echo foo; // BAR