1--TEST-- 2Lazy objects: property fetch ref initializes object 3--FILE-- 4<?php 5 6class C { 7 public int $a = 1; 8 public function __construct() { 9 var_dump(__METHOD__); 10 } 11} 12 13function test(string $name, object $obj) { 14 printf("# %s:\n", $name); 15 16 var_dump($obj); 17 $ref = &$obj->a; 18 var_dump($ref); 19 var_dump($obj); 20} 21 22$reflector = new ReflectionClass(C::class); 23 24$obj = $reflector->newLazyGhost(function ($obj) { 25 var_dump("initializer"); 26 $obj->__construct(); 27}); 28 29test('Ghost', $obj); 30 31$obj = $reflector->newLazyProxy(function ($obj) { 32 var_dump("initializer"); 33 return new C(); 34}); 35 36test('Proxy', $obj); 37 38--EXPECTF-- 39# Ghost: 40lazy ghost object(C)#%d (0) { 41 ["a"]=> 42 uninitialized(int) 43} 44string(11) "initializer" 45string(14) "C::__construct" 46int(1) 47object(C)#%d (1) { 48 ["a"]=> 49 &int(1) 50} 51# Proxy: 52lazy proxy object(C)#%d (0) { 53 ["a"]=> 54 uninitialized(int) 55} 56string(11) "initializer" 57string(14) "C::__construct" 58int(1) 59lazy proxy object(C)#%d (1) { 60 ["instance"]=> 61 object(C)#%d (1) { 62 ["a"]=> 63 &int(1) 64 } 65} 66