<?php function test($arg1, $arg2, $arg3) { var_dump($arg1, $arg2, $arg3); } test("1", "2", false); print "\n---\n"; $arr = ["1", "2", false]; test(...$arr);
You have javascript disabled. You will not be able to edit any code.