mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
32 lines
528 B
PHP
32 lines
528 B
PHP
--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--
|
|
string(3) "OK!"
|
|
object(Closure)#%d (1) {
|
|
["static"]=>
|
|
array(1) {
|
|
["instance"]=>
|
|
object(Closure)#%d (0) {
|
|
}
|
|
}
|
|
}
|