anonymous_func_002.phpt 444 B

12345678910111213141516171819
  1. --TEST--
  2. Testing anonymous function return as array key and accessing $GLOBALS
  3. --FILE--
  4. <?php
  5. $test = create_function('$v', 'return $v;');
  6. $arr = array(create_function('', 'return $GLOBALS["arr"];'), 2);
  7. var_dump($arr[$test(1)]);
  8. var_dump($arr[$test(0)]() == $arr);
  9. ?>
  10. --EXPECTF--
  11. Deprecated: Function create_function() is deprecated in %s on line %d
  12. Deprecated: Function create_function() is deprecated in %s on line %d
  13. int(2)
  14. bool(true)