php:来自“ClassName”的新对象和 args 数组
我有包含类名和参数数组的字符串。
$classname($args) 有效,但在本例中我在构造函数中只有 1 个参数
有人知道如何通过扩展参数来做到这一点吗?
I have string containing classname and an array of args.
$classname($args) works, but in this case I have only 1 argument in constructor
Anyone know, how to do this with args expanded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://php.net/reflection
http://php.net/reflection
哈哈,我刚刚问了这个问题: PHP 传递一个类作为引用?
并且您无法展开
$args
。您可以尝试传递$args[0], $args[1]
等。Haha I just asked this question: PHP passing a class as a reference?
And you can't expand the
$args
. You could try passing$args[0], $args[1]
etc.