Contact: aviboots(AT)netvision.net.il
39,890 questions
51,817 answers
573 users
define("CONSTANT", "php constant"); echo CONSTANT; /* run: php constant */
define("CONSTANT", "php constant"); echo Constant; /* run: Notice: Use of undefined constant Constant - assumed 'Constant' */
// define(name, value, case-insensitive) define("CONSTANT", "php constant", true); echo CONSTANT . "<br/>"; echo Constant; /* run: php constant php constant */
define("PI", 3.14); echo PI . "\n"; echo constant("PI") . "\n"; echo PI * 2 . "\n"; /* run: 3.14 3.14 6.28 */