在 call_user_func_array(...) 中传递关联数组

发布于 2024-08-27 23:26:51 字数 473 浏览 2 评论 0原文

我正在构建一个模板系统,但遇到了动态调用函数的问题。

当我尝试以下操作时:

$args = array(
    4,
    'test' => 'hello',
    'hi'
);

你知道..一些数字元素和一些关联元素,

call_user_func_array($function, $args);

将数组转换为类似这样的内容:

$args = array(
    4,
    'hello',
    'hi'
);

除了传递这样的数组之外,还有其他方法可以解决这个问题吗:

$args = array(
    4,
    array('test' => 'hello'),
    'hi'
);

谢谢! 马特

I'm building a templating system and I'm running in to an issue with calling functions on the fly.

When I try the following:

$args = array(
    4,
    'test' => 'hello',
    'hi'
);

You know.. some numerical elements some associative elements,

call_user_func_array($function, $args);

converts the array to something like this:

$args = array(
    4,
    'hello',
    'hi'
);

Is there any way around this other than passing an array like this:

$args = array(
    4,
    array('test' => 'hello'),
    'hi'
);

Thanks!
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俯瞰星空 2024-09-03 23:26:51

数组键无处可去,因为:

call_user_func_array($function, $args);

相当于:

$function(4, 'hello', 'hi');

您可以使用 call_user_func()< /a> 相反:

call_user_func($function, $args);

然后给定一个带有一个参数的函数,您可以获得关联数组:

function func($args) {
//    $args is complete associative array
}

请注意,call_user_func() 也可以采用多个参数 - 每个参数都会作为一个参数传递给被调用的函数争论。

There's nowhere for the array keys to go because:

call_user_func_array($function, $args);

is equivalent to this:

$function(4, 'hello', 'hi');

You could use call_user_func() instead:

call_user_func($function, $args);

then given a function with one argument, you can get the associative array:

function func($args) {
//    $args is complete associative array
}

Note that call_user_func() can also take more than one argument - each will be passed to the called function as an argument.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文