fork download
  1. <?php
  2.  
  3. class Test {
  4. const MESSAGE = "Aloha";
  5.  
  6. public static function testClosure() {
  7. return function() {
  8. echo self::MESSAGE;
  9. };
  10. }
  11.  
  12. }
  13. (Test::testClosure())();
  14.  
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Aloha