mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

Normally, accesses to properties marked as lazy trigger the object's initialization, or forward to a real instance if the object is an initialized proxy. The purpose of ReflectionProperty::setRawValueWithoutLazyInitialization() and ReflectionProperty::skipLazyInitialization() is to bypass auto-initialization, so that some properties can be initialized without triggering initialization. However, when the object is an initialized proxy, these methods would unexpectedly update the proxy. Here I make sure that these methods have an effect on the real instance, when the object is an initialized proxy. Fixes GH-16344
90 lines
1.6 KiB
PHP
90 lines
1.6 KiB
PHP
--TEST--
|
|
Lazy objects: skipLazyInitialization() has no effect on initialized objects
|
|
--FILE--
|
|
<?php
|
|
|
|
class C {
|
|
public function __construct() {
|
|
$this->a = 2;
|
|
}
|
|
public $a = 1;
|
|
public $b;
|
|
}
|
|
|
|
function test(string $name, object $obj) {
|
|
printf("# %s\n", $name);
|
|
|
|
$reflector = new ReflectionClass(C::class);
|
|
$reflector->initializeLazyObject($obj);
|
|
$reflector->getProperty('a')->skipLazyInitialization($obj);
|
|
|
|
var_dump($obj->a);
|
|
var_dump(!$reflector->isUninitializedLazyObject($obj));
|
|
var_dump($obj);
|
|
}
|
|
|
|
$reflector = new ReflectionClass(C::class);
|
|
$obj = $reflector->newLazyGhost(function ($obj) {
|
|
$obj->__construct();
|
|
});
|
|
|
|
test('Ghost', $obj);
|
|
|
|
$obj = $reflector->newLazyProxy(function () {
|
|
return new C();
|
|
});
|
|
|
|
test('Proxy', $obj);
|
|
|
|
$real = new C('foo');
|
|
$obj = $reflector->newLazyProxy(function () use ($real) {
|
|
return $real;
|
|
});
|
|
$reflector->initializeLazyObject($obj);
|
|
$reflector->resetAsLazyProxy($real, function () {
|
|
var_dump("initializer");
|
|
return new C('bar');
|
|
});
|
|
$reflector->initializeLazyObject($real);
|
|
|
|
test('Nested Proxy', $obj);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
# Ghost
|
|
int(2)
|
|
bool(true)
|
|
object(C)#%d (2) {
|
|
["a"]=>
|
|
int(2)
|
|
["b"]=>
|
|
NULL
|
|
}
|
|
# Proxy
|
|
int(2)
|
|
bool(true)
|
|
lazy proxy object(C)#%d (1) {
|
|
["instance"]=>
|
|
object(C)#%d (2) {
|
|
["a"]=>
|
|
int(2)
|
|
["b"]=>
|
|
NULL
|
|
}
|
|
}
|
|
string(11) "initializer"
|
|
# Nested Proxy
|
|
int(2)
|
|
bool(true)
|
|
lazy proxy object(C)#%d (1) {
|
|
["instance"]=>
|
|
lazy proxy object(C)#%d (1) {
|
|
["instance"]=>
|
|
object(C)#%d (2) {
|
|
["a"]=>
|
|
int(2)
|
|
["b"]=>
|
|
NULL
|
|
}
|
|
}
|
|
}
|