fork(31) download
  1. <?php
  2.  
  3. define('CONSTANT_NAME', 'constant_value', true);
  4. print CONSTANT_NAME.PHP_EOL;
  5. define('CONSTANT_NAME', 'constant_value2');
  6. print CONSTANT_NAME.PHP_EOL;
Success #stdin #stdout 0.02s 24412KB
stdin
Standard input is empty
stdout
constant_value
constant_value2