<?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);
You have javascript disabled. You will not be able to edit any code.