fork download
  1. <?php
  2.  
  3. class Test
  4. {
  5. const EMPTY = 100;
  6.  
  7. public function __construct()
  8. {
  9. echo 'test';
  10. }
  11. }
  12.  
  13. $test = new Test;
Runtime error #stdin #stdout #stderr 0.02s 52472KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected 'EMPTY' (T_EMPTY), expecting identifier (T_STRING) in /home/swy5UW/prog.php on line 5