<?php function initialize_properties_here(array $properties) { $properties['bar'] = 123; } class Foo { private int $bar = 123; public function __get(string $name) { $props = ['bar' => & $this->bar]; initialize_properties_here($props); return $this->$name; } } var_dump((new Foo())->bar);
You have javascript disabled. You will not be able to edit any code.