PHP 相当于 Python 的 func(*[args])

发布于 2024-10-04 06:05:10 字数 136 浏览 2 评论 0原文

在 Python 中我可以这样做:

def f(a, b, c):
    print a, b, c

f(*[1, 2, 3])

How do you say this in PHP?

In Python I can do this:

def f(a, b, c):
    print a, b, c

f(*[1, 2, 3])

How do you say this in PHP?

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

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

发布评论

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

评论(1

机场等船 2024-10-11 06:05:10

使用 call_user_func_array

call_user_func_array('f', array(1, 2, 3));

如果你想调用一个类方法,你可以使用 array($instance , 'f') 而不是 'f',如果它是静态类函数,您将使用 array('ClassName', 'f')'ClassName::f'。有关详细信息,请参阅回调类型文档

Use call_user_func_array:

call_user_func_array('f', array(1, 2, 3));

If you wanted to call a class method, you'd use array($instance, 'f') instead of 'f' and if it was a static class function you'd use array('ClassName', 'f') or 'ClassName::f'. See the callback type docs for details about that.

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