This article provides a detailed analysis of the differences between const and define in php. For more information, see
This article provides a detailed analysis of the differences between const and define in php. For more information, see
1. const is used for defining class member variables. Once defined, the value cannot be changed. Define defines global constants, virtual hosts, and can be accessed anywhere.
2. define cannot be defined in the class, But const can.
3. const cannot define constants in condition statements.
The Code is as follows:
If (...){
Const FOO = 'bar'; // invalid
}
But
If (...){
Define ('foo', 'bar'); // valid
}
4. const uses a normal constant name, and define can use an expression as the name.
The Code is as follows:
Const FOO = 'bar ';
For ($ I = 0; $ I <32; ++ $ I ){
Define ('bit _ '. $ I, 1 <$ I );
}
5. const can only accept static scalar, Hong Kong virtual host, and define can use any expression.
The Code is as follows:
Const BIT_5 = 1 <5; // invalid
But
Define ('bit _ 5', 1 <5); // valid
6. const is always case sensitive. The Hong Kong virtual host, however, define () can use the third parameter to define a case-insensitive constant.
The Code is as follows:
Define ('foo', 'bar', true );
Echo FOO; // BAR
Echo foo; // BAR
Summary:
Const is easy to read. It is a language structure, and define is a method. It is much faster to define const in compilation than define.