php · PHP basics
Which of the following is a correct way to define a case-insensitive constant in PHP?
Answers
- define('CONSTANT', 'value', true);
- const CONSTANT = 'value';
- define_case_insensitive('CONSTANT', 'value');
- constant('CONSTANT', 'value');
php · PHP basics