在PHP中,你可以用两种方式声明常量:
使用define关键字 定义(“FOO”,1); 使用const关键字 const FOO = 1;
这两者之间的主要区别是什么? 什么时候,为什么要使用一种,什么时候使用另一种?
在PHP中,你可以用两种方式声明常量:
使用define关键字 定义(“FOO”,1); 使用const关键字 const FOO = 1;
这两者之间的主要区别是什么? 什么时候,为什么要使用一种,什么时候使用另一种?
当前回答
我相信从PHP 5.3开始,你可以在类之外使用const,如下面的第二个例子所示:
http://www.php.net/manual/en/language.constants.syntax.php
<?php
// Works as of PHP 5.3.0
const CONSTANT = 'Hello World';
echo CONSTANT;
?>
其他回答
从PHP 5.3开始,有两种方法定义常量:要么使用const关键字,要么使用define()函数:
const FOO = 'BAR';
define('FOO', 'BAR');
这两种方式的根本区别在于const在编译时定义常量,而define在运行时定义常量。这导致了const的大部分缺点。const的一些缺点是:
const cannot be used to conditionally define constants. To define a global constant, it has to be used in the outermost scope: if (...) { const FOO = 'BAR'; // Invalid } // but if (...) { define('FOO', 'BAR'); // Valid } Why would you want to do that anyway? One common application is to check whether the constant is already defined: if (!defined('FOO')) { define('FOO', 'BAR'); } const accepts a static scalar (number, string or other constant like true, false, null, __FILE__), whereas define() takes any expression. Since PHP 5.6 constant expressions are allowed in const as well: const BIT_5 = 1 << 5; // Valid since PHP 5.6 and invalid previously define('BIT_5', 1 << 5); // Always valid const takes a plain constant name, whereas define() accepts any expression as name. This allows to do things like this: for ($i = 0; $i < 32; ++$i) { define('BIT_' . $i, 1 << $i); } consts are always case sensitive, whereas define() allows you to define case insensitive constants by passing true as the third argument (Note: defining case-insensitive constants is deprecated as of PHP 7.3.0 and removed since PHP 8.0.0): define('FOO', 'BAR', true); echo FOO; // BAR echo foo; // BAR
这就是事情不好的一面。现在让我们看看为什么我个人总是使用const,除非发生上述情况之一:
const simply reads nicer. It's a language construct instead of a function and also is consistent with how you define constants in classes. const, being a language construct, can be statically analysed by automated tooling. const defines a constant in the current namespace, while define() has to be passed the full namespace name: namespace A\B\C; // To define the constant A\B\C\FOO: const FOO = 'BAR'; define('A\B\C\FOO', 'BAR'); Since PHP 5.6 const constants can also be arrays, while define() does not support arrays yet. However, arrays will be supported for both cases in PHP 7. const FOO = [1, 2, 3]; // Valid in PHP 5.6 define('FOO', [1, 2, 3]); // Invalid in PHP 5.6 and valid in PHP 7.0
最后,请注意,const也可以在类或接口中使用,以定义类常量或接口常量。Define不能用于此目的:
class Foo {
const BAR = 2; // Valid
}
// But
class Baz {
define('QUX', 2); // Invalid
}
总结
除非需要任何类型的条件定义或表达式定义,否则请使用const而不是define() -只是为了可读性!
我相信从PHP 5.3开始,你可以在类之外使用const,如下面的第二个例子所示:
http://www.php.net/manual/en/language.constants.syntax.php
<?php
// Works as of PHP 5.3.0
const CONSTANT = 'Hello World';
echo CONSTANT;
?>
在PHP 5.3之前,const不能在全局作用域中使用。您只能在类中使用它。当您想要设置一些属于该类的常量选项或设置时,应该使用此选项。或者你可能想要创建某种enum。
Define可以用于相同的目的,但只能在全局作用域中使用。它只能用于影响整个应用程序的全局设置。
良好使用const的一个例子是去掉神奇的数字。看一下PDO的常数。例如,当需要指定获取类型时,可以输入PDO::FETCH_ASSOC。如果不使用const,则最终会键入类似35的值(或FETCH_ASSOC定义的任何值)。这对读者来说毫无意义。
好的define用法的一个例子是指定应用程序的根路径或库的版本号。
是的,const是在编译时定义的,因为nikic状态不能被分配一个表达式,而define()可以。但是const也不能有条件地声明(出于同样的原因)。ie。你不能这样做:
if (/* some condition */) {
const WHIZZ = true; // CANNOT DO THIS!
}
而使用define()则可以。所以,这并不取决于个人喜好,两者都有正确和错误的使用方式。
题外话……我想看到某种类型的类const,可以分配一个表达式,一种定义(),可以隔离到类?
定义我用于全局常量。
const用于类常量。
不能在类范围内定义,而使用const可以。
同样,使用const,它实际上成为类的成员,而使用define,它将被推入全局作用域。