PHP 5.4 - “关闭$this支持”
我看到PHP 5.4的新计划功能是:特征,数组取消引用,JsonSerializable接口和称为'closure $this support
'
http://en.wikipedia.org/wiki/Php#Release_history
虽然其他的要么立即清晰(JsonSerialiable,数组取消引用),要么我查找了细节(特征),但我不确定“闭包$this支持”是什么。我一直在谷歌搜索它或在 php.net 上找到任何有关它的东西都没有成功
有谁知道这应该是什么?
如果我不得不猜测,它将意味着这样的事情:
$a = 10; $b = 'strrrring';
//'old' way, PHP 5.3.x
$myClosure = function($x) use($a,$b)
{
if (strlen($x) <= $a) return $x;
else return $b;
};
//'new' way with closure $this for PHP 5.4
$myNewClosure = function($x) use($a as $lengthCap,$b as $alternative)
{
if(strlen($x) <= $this->lengthCap)) return $x;
else
{
$this->lengthCap++; //lengthcap is incremented for next time around
return $this->alternative;
}
};
意义(即使这个例子是微不足道的)是,在过去,一旦构造了闭包,绑定的“use”变量是固定的。有了“关闭$this支持”,他们更像是你可以搞砸的成员。
这听起来是否正确和/或接近和/或合理?有谁知道这种“关闭$this支持”是什么意思?