fork(1) download
  1. <?php
  2.  
  3. class A_B {
  4. function f() {
  5. echo 'hi';
  6. }
  7. }
  8.  
  9. class A {
  10. const B = 'A_B';
  11. }
  12.  
  13. $x = new A::B;
  14. $x->f();
Runtime error #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected 'B' (T_STRING), expecting variable (T_VARIABLE) or '$' in /home/pkgJzW/prog.php on line 13