38 lines
701 B
PHP
38 lines
701 B
PHP
--TEST--
|
|
GH-18038 002: Lazy proxy calls magic methods twice
|
|
--FILE--
|
|
<?php
|
|
|
|
#[AllowDynamicProperties]
|
|
class RealInstance {
|
|
public $_;
|
|
public function __set($name, $value) {
|
|
global $obj;
|
|
var_dump(get_class($this)."::".__FUNCTION__);
|
|
$obj->$name = $value * 2;
|
|
unset($this->$name);
|
|
$this->$name = $value * 2;
|
|
}
|
|
}
|
|
|
|
#[AllowDynamicProperties]
|
|
class Proxy extends RealInstance {
|
|
}
|
|
|
|
$rc = new ReflectionClass(Proxy::class);
|
|
|
|
$obj = $rc->newLazyProxy(function () {
|
|
echo "init\n";
|
|
return new RealInstance;
|
|
});
|
|
|
|
$real = $rc->initializeLazyObject($obj);
|
|
$real->prop = 1;
|
|
var_dump($obj->prop);
|
|
|
|
?>
|
|
--EXPECT--
|
|
init
|
|
string(19) "RealInstance::__set"
|
|
int(2)
|