php-src/Zend/tests/call_user_func_003.phpt

32 lines
499 B
Plaintext
Raw Normal View History

2009-07-19 16:31:43 +00:00
--TEST--
Testing call_user_func() with closures
--FILE--
<?php
$foo = function() {
static $instance;
if (is_null($instance)) {
$instance = function () {
return 'OK!';
};
}
return $instance;
};
var_dump(call_user_func(array($foo, '__invoke'))->__invoke());
var_dump(call_user_func(function() use (&$foo) { return $foo; }, '__invoke'));
?>
--EXPECTF--
2016-11-22 21:12:07 +00:00
string(3) "OK!"
2009-07-19 16:31:43 +00:00
object(Closure)#%d (1) {
2016-11-22 21:12:07 +00:00
["static"]=>
2009-07-19 16:31:43 +00:00
array(1) {
2016-11-22 21:12:07 +00:00
["instance"]=>
2009-07-19 16:31:43 +00:00
object(Closure)#%d (0) {
}
}
}