<?php class Dumb { readonly int $unreliable; function __construct() { unset($this->unreliable); } function __get($key) { return random_int(0, 999); } } $rubbish = new Dumb; var_dump($rubbish->unreliable); var_dump($rubbish->unreliable);
You have javascript disabled. You will not be able to edit any code.