<?php function multiply(...$nums): int|float { $nums = array_filter($nums, 'is_numeric'); return array_product($nums); } echo multiply(10, 20) . "\n"; echo multiply("A", 10, 30) . "\n"; echo multiply(100.5, 10, "B") . "\n";
You have javascript disabled. You will not be able to edit any code.