Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/anonymous_func_002.phpt

--TEST--
Testing anonymous function return as array key and accessing $GLOBALS
--FILE--
<?php

$test = create_function('$v', 'return $v;');

$arr = array(create_function('', 'return $GLOBALS["arr"];'), 2);

var_dump($arr[$test(1)]);
var_dump($arr[$test(0)]() == $arr);

?>
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d

Deprecated: Function create_function() is deprecated in %s on line %d
int(2)
bool(true)