3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function __construct( public string $promoted = 'abc', ) { echo 'Parameter access: ', $promoted, PHP_EOL; echo 'Property access: ', $this->promoted, PHP_EOL; } } new Test;
Output for 8.1.0 - 8.1.29, 8.2.0 - 8.2.22, 8.3.0 - 8.3.11
Parameter access: abc Property access: abc

preferences:
40.32 ms | 406 KiB | 5 Q