PHP 相当于 Python 的 func(*[args])
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 call_user_func_array:
如果你想调用一个类方法,你可以使用
array($instance , 'f')
而不是'f'
,如果它是静态类函数,您将使用array('ClassName', 'f')
或'ClassName::f'
。有关详细信息,请参阅回调类型文档。Use call_user_func_array:
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 usearray('ClassName', 'f')
or'ClassName::f'
. See the callback type docs for details about that.