- Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- string(4) "here" 1
<?php
readonly class Foo
{
public function __set($name, $value)
{
var_dump('here');
}
public function __get($name)
{
return 1;
}
}
$f = new Foo();
$f->test = 1;
echo $f->test;