php-src/Zend/tests/closure_033.phpt
Bob Weinand bce9368dfb Closures only have {closure}() as method name
Prefixing a class name does not make sense as they may be rebound to another scope, where this will be confusing
2015-07-14 02:52:09 +02:00

32 lines
522 B
PHP

--TEST--
Closure 033: Dynamic closure property and private function
--FILE--
<?php
class Test {
public $func;
function __construct() {
$this->func = function() {
echo __METHOD__ . "()\n";
};
}
private function func() {
echo __METHOD__ . "()\n";
}
}
$o = new Test;
$f = $o->func;
$f();
$o->func();
?>
===DONE===
--EXPECTF--
{closure}()
Fatal error: Uncaught Error: Call to private method Test::func() from context '' in %sclosure_033.php:%d
Stack trace:
#0 {main}
thrown in %sclosure_033.php on line %d