3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function foo(string &$arg) { $arg = 123; } $a = 'abc'; foo($a); var_dump($a); // The int was allowed to returned in a string arg
Output for 8.1.0 - 8.1.29, 8.2.0 - 8.2.23, 8.3.0 - 8.3.11
int(123)

preferences:
51.89 ms | 406 KiB | 5 Q