##Available when defining constants in PHP What is the difference between const and define?
1. Const is used to define class member variables. Once defined, its value cannot be changed. define defines global constants that can be accessed anywhere. 2. define cannot be defined in a class, but const must be defined in a class, and variables defined by const must be accessed through class name::variable name. 3. Const constants cannot be defined in conditional statements. 4. const uses an ordinary constant name (static scalar), and define can use any expression as the name. 5. const is always case-sensitive, but define() can define case-insensitive constants through the third parameter. 6. Using const is simple and easy to read. It is a language structure in itself, and define is a method. Using const to define is much faster than define at compile time. If you define a constant in a class, you cannot use define, but use const, as in the following example:PHP Tutorial"
<?php //在类外面通常这样定义常量 define("PHP","111cn.net"); class MyClass { //常量的值将始终保持不变。在定义和使用常量的时候不需要使用$符号 const constant = 'constant value'; function showConstant() { echo self::constant . "<br>"; } } echo MyClass::constant . "<br>"; $classname = "MyClass"; echo $classname::constant . "<br>"; // PHP 5.3.0之后 $class = new MyClass(); $class->showConstant(); echo $class::constant."<br>"; // PHP 5.3.0之后 //print_r(get_defined_constants()); //可以用get_defined_constants()获取所有定义的常量 ?>
<?php const a = "abcdef"; echo a; ?>
I won’t go into the basic knowledge about constants here. In addition to the above, define and const are other things. Difference (from the Internet):
1.const cannot define constants in conditional statements, but define is possible, as follows:<?php if(1){ const a = 'java'; } echo a; //必错 ?>
<?phpconst FOO = 'PHP'; for ($i = 0; $i < 32; ++$i) { define('PHP_' . $i, 1 << $i); } ?>
<?php const PHP = 1 << 5; // 错误 define('PHP', 1 << 5); // 正确 ?>
The following content is excerpted from Rotted_Pencil's blog post: The difference between defining constants in PHP, define() vs. const
Preface Read it again on Stackoverflow today I came across a very interesting article, so I translated it and picked it up. The article was written by NikiC, one of the PHP development members, and its authority is unquestionableText In PHP5.3, there are two ways to define constants:1. Use the const keyword 2. Use the define() methodconst FOO = ‘BAR’; define(‘FOO’,’BAR’);
if (...) { const FOO = 'BAR'; // 无效的 } // but if (...) { define('FOO', 'BAR'); // 有效的 }
if (!defined('FOO')) { define('FOO', 'BAR'); }
const BIT_5 = 1 << 5; // 在PHP5.6之后有效,之前无效 define('BIT_5', 1 << 5); // 一直有效
for ($i = 0; $i < 32; ++$i) { define('BIT_' . $i, 1 << $i); }
define('FOO', 'BAR', true); echo FOO; // BAR echo foo; // BAR
namespace A\B\C; // 如果要定义常量 A\B\C\FOO: const FOO = ‘BAR’; define(‘A\B\C\FOO’, ‘BAR’);
const FOO = [1, 2, 3]; // 在PHP 5.6中有效 define(‘FOO’, [1, 2, 3]); // 在PHP 5.6无效, 在PHP 7.0有效
class Foo { const BAR = 2; // 有效 } class Baz { define('QUX', 2); // 无效 }
Unless you need to use expressions or define constants in conditional statements, otherwise you'd better use const just for the simple readability of the code!
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of Detailed explanation of the difference between const and define in PHP. For more information, please follow other related articles on the PHP Chinese website!