PHP 中有类似 JavaScript 的 apply 函数吗?

发布于 2024-11-29 13:17:08 字数 243 浏览 0 评论 0原文

在 JavaScript 中,我可以使用 apply 将数组作为参数传递给函数:

var f = function (n,m) {},
    args = [1,2];

f.apply(null, args);

我现在需要在 PHP 中执行类似的操作,即 将项目数组作为“单独”参数传递给函数

有什么办法可以做到这一点吗?

In JavaScript, I can use apply to pass an array as arguments to a function:

var f = function (n,m) {},
    args = [1,2];

f.apply(null, args);

I now need to do something similar in PHP i.e. pass an array of items as 'separate' arguments to a function.

Is there any way this can be done?

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

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

发布评论

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

评论(1

未蓝澄海的烟 2024-12-06 13:17:09

您可以使用函数call_user_func_array。只需传入您的函数(作为 回调,通常是带有函数名称的字符串)和参数数组。

附加说明:对于静态函数,请使用 forward_static_call_array

You can use the function call_user_func_array. Simply pass in your function (as a callback, usually a string with the function name), and an array of arguments.

Additional note: for static functions, use forward_static_call_array.

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