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.
 
 
 
 
 
 

20 lines
251 B

--TEST--
Closure 030: Using lambda with variable variables
--FILE--
<?php
$b = function() { return func_get_args(); };
$a = 'b';
var_dump($$a(1));
var_dump($$a->__invoke(2));
?>
--EXPECT--
array(1) {
[0]=>
int(1)
}
array(1) {
[0]=>
int(2)
}