3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function doSomething(int|string $value): ?float { if ($value === null) return null; return round($value, 3); } doSomething(1); doSomething('pink');

preferences:
26.45 ms | 404 KiB | 5 Q