3v4l.org

run code in 500+ PHP versions simultaneously
<?php readonly class ImmutableBadNumberGenerator { public function __construct(private readonly int $i) {} public function generate(): int { static $j = 1; ++$j; return $this->i + $j; } } $o = new ImmutableBadNumberGenerator(10); var_dump($o->generate()); var_dump($o->generate()); var_dump($o->generate());
Output for 8.2.1 - 8.2.30, 8.3.5 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
int(12) int(13) int(14)
Output for 8.1.0 - 8.1.34
Parse error: syntax error, unexpected token "readonly", expecting end of file in /in/A2Lbs on line 3
Process exited with code 255.
Output for 8.0.1 - 8.0.26
Parse error: syntax error, unexpected token "class" in /in/A2Lbs on line 3
Process exited with code 255.

preferences:
69.19 ms | 891 KiB | 4 Q