PHP数组传参

数组:

`$arr=['user1','user2','user3','user4'];

函数:

function hDel($hashKey1, ...$otherHashKeys){

}
`
有办法将数组拆分成多个参数直接传入函数吗 还是只能循环

阅读 2.8k
2 个回答

可以这麽用

$arr=['user1','user2','user3','user4'];

function f1($user1, $user2){
    var_dump($user1);
    var_dump($user2);
}

f1(...$arr);

// 结果
// string(5) "user1"
// string(5) "user2"

是这样吗

$arr=['user1','user2','user3','user4'];


function hDel($hashKey1, $hashKey2){

    var_dump($hashKey1);
    var_dump($hashKey2);
}

call_user_func_array('hDel', $arr);
推荐问题