static_basic_002.phpt 271 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. Multiple declarations of the same static variable
  3. --FILE--
  4. <?php
  5. $a = 5;
  6. var_dump($a);
  7. static $a = 10;
  8. static $a = 11;
  9. var_dump($a);
  10. function foo() {
  11. static $a = 13;
  12. static $a = 14;
  13. var_dump($a);
  14. }
  15. foo();
  16. ?>
  17. --EXPECT--
  18. int(5)
  19. int(11)
  20. int(14)