mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
28 lines
606 B
PHP
28 lines
606 B
PHP
--TEST--
|
|
Closure 042: Binding an instance to a non-scoped non-static closures gives it a dummy scope
|
|
--FILE--
|
|
<?php
|
|
|
|
$c = function() { var_dump($this); };
|
|
$d = $c->bindTo(new stdClass);
|
|
$d();
|
|
$rm = new ReflectionFunction($d);
|
|
var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
|
|
|
|
//should have the same effect
|
|
$d = $c->bindTo(new stdClass, NULL);
|
|
$d();
|
|
$rm = new ReflectionFunction($d);
|
|
var_dump($rm->getClosureScopeClass()->name); //dummy sope is Closure
|
|
|
|
echo "Done.\n";
|
|
?>
|
|
--EXPECTF--
|
|
object(stdClass)#%d (0) {
|
|
}
|
|
string(7) "Closure"
|
|
object(stdClass)#%d (0) {
|
|
}
|
|
string(7) "Closure"
|
|
Done.
|