PHP数组传参

数组:

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

函数:

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

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

阅读 2.7k
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);
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题