数组:
`$arr=['user1','user2','user3','user4'];
函数:
function hDel($hashKey1, ...$otherHashKeys){
}`有办法将数组拆分成多个参数直接传入函数吗 还是只能循环
可以这麽用
$arr=['user1','user2','user3','user4']; function f1($user1, $user2){ var_dump($user1); var_dump($user2); } f1(...$arr); // 结果 // string(5) "user1" // string(5) "user2"
1.4m articles
1.4m replys
5 comments
57.0k users