3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * @psalm-pure * * @return Hello */ function abc() { $xyz = new Hello(); $xyz->world = true; return $xyz; } class Hello { public function __set($param, $value){ echo "This is a major side effect!"; } } abc();
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
This is a major side effect!

preferences:
129.51 ms | 402 KiB | 123 Q