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