在PHP中,你可以用两种方式声明常量:

使用define关键字 定义(“FOO”,1); 使用const关键字 const FOO = 1;


这两者之间的主要区别是什么? 什么时候,为什么要使用一种,什么时候使用另一种?


当前回答

补充一下尼克的回答。Const可以在类中以以下方式使用:

class Foo {
    const BAR = 1;

    public function myMethod() {
        return self::BAR;
    }
}

使用define()不能做到这一点。

其他回答

这些答案大多是错误的,或者只说了一半。

可以通过使用名称空间来限定常量的范围。 你可以在类定义之外使用“const”关键字。然而,就像在 使用"const"关键字赋值的类必须是 常数表达式。

例如:

const AWESOME = 'Bob'; // Valid

不好的例子:

const AWESOME = whatIsMyName(); // Invalid (Function call)
const WEAKNESS = 4+5+6; // Invalid (Arithmetic) 
const FOO = BAR . OF . SOAP; // Invalid (Concatenation)

使用define()创建变量常量,如下所示:

define('AWESOME', whatIsMyName()); // Valid
define('WEAKNESS', 4 + 5 + 6); // Valid
define('FOO', BAR . OF . SOAP); // Valid

从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;
?>

是的,const是在编译时定义的,因为nikic状态不能被分配一个表达式,而define()可以。但是const也不能有条件地声明(出于同样的原因)。ie。你不能这样做:

if (/* some condition */) {
  const WHIZZ = true;  // CANNOT DO THIS!
}

而使用define()则可以。所以,这并不取决于个人喜好,两者都有正确和错误的使用方式。

题外话……我想看到某种类型的类const,可以分配一个表达式,一种定义(),可以隔离到类?

补充一下尼克的回答。Const可以在类中以以下方式使用:

class Foo {
    const BAR = 1;

    public function myMethod() {
        return self::BAR;
    }
}

使用define()不能做到这一点。