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.

10 lines
145 B

  1. --TEST--
  2. Bug #33989 (extract($GLOBALS,EXTR_REFS) crashes PHP)
  3. --FILE--
  4. <?php
  5. $a="a";
  6. extract($GLOBALS, EXTR_REFS);
  7. echo "ok\n";
  8. ?>
  9. --EXPECT--
  10. ok