You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
297 B

  1. --TEST--
  2. Bug #27669 (PHP 5 didn't support all possibilities for calling static methods dynamically)
  3. --FILE--
  4. <?php
  5. error_reporting(E_ALL & !E_STRICT);
  6. class A {
  7. function hello() {
  8. echo "Hello World\n";
  9. }
  10. }
  11. $y[0] = 'hello';
  12. A::$y[0]();
  13. ?>
  14. ===DONE===
  15. --EXPECTF--
  16. Hello World
  17. ===DONE===