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.
 
 
 
 
 
 

28 lines
456 B

--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--
Test::{closure}()
Fatal error: Call to private method Test::func() from context '' in %sclosure_033.php on line %d