123456789101112131415161718192021222324252627 |
- --TEST--
- Indirect call with constants.
- --FILE--
- <?php
- class Test
- {
- public static function method()
- {
- echo "Method called!\n";
- }
- }
- ['Test', 'method']();
- 'Test::method'();
- (['Test', 'method'])();
- ('Test::method')();
- ?>
- --EXPECT--
- Method called!
- Method called!
- Method called!
- Method called!
|