只是为了澄清,我的意思是:
class foon { private $barn = null; public function getBarn() { if (is_null($this->barn)) { $this->barn = getBarnImpl(); } return $this->barn; } }
当你不总是需要getBarn时,这是特别好的,并且getBarn特别昂贵(例如有一个DB调用).有没有办法避免有条件的?这占用了大量空间,看起来很丑陋,看到条件消失总是很好.还有其他一些范例可以处理这个我看不到的延迟加载吗?
通过使用PHP的__call()魔术方法,我们可以轻松编写一个拦截所有方法调用的装饰器对象,并缓存返回值.
原文链接:https://www.f2er.com/php/134674.html有一次我做了这样的事情:
class MethodReturnValueCache { protected $vals = array(); protected $obj; function __construct($obj) { $this->obj = $obj; } function __call($meth,$args) { if (!array_key_exists($meth,$this->vals)) { $this->vals[$meth] = call_user_func_array(array($this->obj,$meth),$args); } return $this->vals[$meth]; } }
然后
$cachedFoon = new MethodReturnValueCache(new foon); $cachedFoon->getBarn();