indirect_call_from_constant.phpt 314 B

123456789101112131415161718192021222324252627
  1. --TEST--
  2. Indirect call with constants.
  3. --FILE--
  4. <?php
  5. class Test
  6. {
  7. public static function method()
  8. {
  9. echo "Method called!\n";
  10. }
  11. }
  12. ['Test', 'method']();
  13. 'Test::method'();
  14. (['Test', 'method'])();
  15. ('Test::method')();
  16. ?>
  17. --EXPECT--
  18. Method called!
  19. Method called!
  20. Method called!
  21. Method called!