将参数从php中的数组传递给构造函数 [英] Pass arguments from array in php to constructor

查看:34
本文介绍了将参数从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);

是否有一些相当优雅的东西确实有效?

is there something fairly elegant that does work ?

推荐答案

您可以使用反射 API:

You can use the Reflection API:

示例:

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

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

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