bug69537.phpt 246 B

123456789101112131415161718
  1. --TEST--
  2. Bug #69537 (__debugInfo with empty string for key gives error)
  3. --FILE--
  4. <?php
  5. class Foo {
  6. public function __debugInfo(){
  7. return ['' => 1];
  8. }
  9. }
  10. var_dump(new Foo);
  11. ?>
  12. --EXPECTF--
  13. object(Foo)#%d (%d) {
  14. [""]=>
  15. int(1)
  16. }