从数组传递参数在PHP中构造器 [英] Pass arguments from array in php to constructor

查看:125
本文介绍了从数组传递参数在PHP中构造器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通常,如果我想通过从$ myarray中至$ somefunction论点,我可以在PHP中使用做到这一点。

Normally, if I want to pass arguments from $myarray to $somefunction I can do this in php using

call_user_func_array($somefunction, $myarray);

然而,当一个人希望调用的函数是对象的构造这不起作用。对于相当明显的原因,它不工作的事情:

However this does not work when the function one wishes to call is the constructor for an object. For fairly obvious reasons it does not work to do:

$myobj = new call_user_func_array($classname, $myarray);

是那里的的东西相当优雅确实工作的?

推荐答案

您可以使用反射API:

You can use the Reflection API:

例如:

$reflector = new ReflectionClass('Foo');
$foo = $reflector->newInstanceArgs(array('foo', 'bar'));

这篇关于从数组传递参数在PHP中构造器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆