<?php declare(strict_types=1); function f(array|string $var_name, array|string ...$var_names): void { var_dump($var_name, ...$var_names); } f(true, 42);
You have javascript disabled. You will not be able to edit any code.