<?php
readonly class Foobar
{
public function __construct(public string $foo) {}
}
try {
$reflection = new ReflectionClass(Foobar::class);
$obj = $reflection->newInstanceWithoutConstructor();
echo $obj->foo, PHP_EOL;
} catch (Throwable $exception) {
echo $exception->getMessage(), PHP_EOL,
$exception::class, PHP_EOL,
implode(PHP_EOL, class_parents($exception));
}
- Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- Typed property Foobar::$foo must not be accessed before initialization
Error
- Output for 8.1.32
- Parse error: syntax error, unexpected token "readonly", expecting end of file in /in/Wn7En on line 3
Process exited with code 255.
preferences:
55.71 ms | 407 KiB | 5 Q