3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function test(int $a, int $i = null): void { if ($i === NULL) print("error\n"); else var_dump($i); } test(1, null); test(2, 32); test(3);

preferences:
24.17 ms | 404 KiB | 5 Q