好的,我确实有下面的代码
<?php
class foo{
public $bar = NULL;
public function boo(){
$this->bar();
}
}
$mee = new foo();
//save a closure function on the property
$mee->bar = function(){
echo 'hahaha';
};
//invoke the closure function by using a class method
$mee->boo();
?>
你可以看到它在这里运行http://codepad.org/s1jhi7cv
现在我想要在这里将闭包函数存储在类方法上。
当我在这里阅读有关它的文档时,关闭是可能的http://php.net/manual/en/functions.anonymous.php
这可能吗?我是不是做错了什么?请纠正我