fork(1) download
  1. <?php
  2.  
  3. // define('TRUE', 'foo'); // works
  4. // define('True', 'bar'); // works too, even in combination with the first one
  5. // define('true', 'abc'); // Notice: Constant true already defined
  6.  
  7. var_dump(constant('TRUE')); // string 'foo'
  8. var_dump(constant('True')); // string 'bar'
  9. var_dump(constant('true')); // boolean true
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
bool(true)
bool(true)
bool(true)