- php constant(), :
if (constant('BOO')) doSomething();
.
PHP-, .
Ap php docs, , ; null.
null falsey, , .
, , - true (, , ) , Falsey. , , .
if (constant('IS_DEV')) {
// *Remember to enclose the constant name in quotes.*
// do stuff that should only happen in a dev environment
// By Default, if it didn't get defined it is, as though, 'false'
}
constant() . , php , ( ) .
, PHP , .
, :
if (defined('IS_DEV') && (IS_DEV)) {
// *Remember to enclose the constant name in quotes for the FIRST operator.*
// do stuff that should only happen in a dev environment
}
, , - === !==, ( ), .
if (IS_DEV === true)) {
}