我想知道static
关键字在特征中返回什么?似乎它被绑定到特征而不是使用它的类。例如:
trait Example
{
public static $returned;
public static function method()
{
if (!eval('\\'.get_called_class().'::$returned;')) {
static::$returned = static::doSomething();
}
return static::$returned;
}
public static function doSomething()
{
return array_merge(static::$rules, ['did', 'something']);
}
}
class Test {}
class Test1 extends Test
{
use Example;
protected static $rules = ['test1', 'rules'];
}
class Test2 extends Test
{
use Example;
protected static $rules = ['test2', 'rules'];
}
// usage
Test1::method();
// returns expected results:
// ['test1', 'rules', 'did', 'something'];
Test2::method();
// returns unexpected results:
// ['test1', 'rules', 'did', 'something'];
// should be:
// ['test2', 'rules', 'did', 'something'];
我可以让它eval()
在method()
方法中使用一些讨厌的东西:
public static function method()
{
if (!eval('\\'.get_called_class().'::$returned;')) {
static::$returned = static::doSomething();
}
return static::$returned;
}
现在它只是将它与它匹配,\My\Namespaced\Class::$returned
但它也很奇怪,因为它检查一个静态属性,$returned
,它是在 trait 开始时定义的,并正确绑定到使用它的类。那为什么不static::$returned
工作呢?
PHP 版本是 5.6.10。