doujia7779 2018-08-14 18:45
浏览 150
已采纳

PHP可以轻松地将数组结构化为单个变量以传递给函数

Say I have a PHP array like this.

array(2) { ["page"]=> string(1) "a" ["subpage"]=> string(4) "gaga" }

I want to pass the contents of this array to a function call, of a function like this:

function doStuff($page, $subpage) {
 // Do stuff
}

How could I destructure this array into individual objects to pass to the function? The variables of the function will always be in the same order that the corresponding keys are in the array.

  • 写回答

3条回答 默认 最新

  • dongya6997 2018-08-14 18:48
    关注

    You can use array_values to get the values out of the array and then call_user_func_array to call your function using an array of values as an argument.

    <?php
    $input = array( 'page' => 'a', 'subpage' => 'gaga' );
    $values = array_values($input);
    $result = call_user_func_array('doStuff', $values);
    

    Or, in newer versions of PHP (>=5.6.x), you can use argument unpacking with the ... operator:

    <?php
    $input = array( 'page' => 'a', 'subpage' => 'gaga' );
    $values = array_values($input);
    $result = doStuff(...$values);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 C++ 如何判断设置快捷键来实现隐藏/显示窗口
  • ¥15 关于#材料工程#的问题:有没有具有电子阻挡层和空穴阻挡层的电池仿真silvaco代码例子或者其他器件具有阻挡层例子的silvaco代码(最好还有相关文献)
  • ¥60 基于MATLAB的TAOD算法
  • ¥15 Groimp使用疑问
  • ¥15 MDK–ARM里一直找不到调试器
  • ¥15 oracle中sql查询问题
  • ¥15 vue使用gojs3.0版本,在nodeDataArray中的iconSrc使用gif本地路径,展示出来后动画是静态的,不是动态的
  • ¥100 代写个MATLAB代码,有偿
  • ¥15 ansys electronics 2021 R1安装报错,错误代码2,如图
  • ¥15 Dev-c++打字不出现中文,但出现日文