我有一个函数,它应该读取数组并动态设置对象属性。
class A {
public $a;
public $b;
function set($array){
foreach ($array as $key => $value){
if ( property_exists ( $this , $key ) ){
$this->{$key} = $value;
}
}
}
}
$a = new A();
$val = Array( "a" => "this should be set to property", "b" => "and this also");
$a->set($val);
嗯,显然它不起作用,有没有办法做到这一点?
修改
这段代码似乎没有问题,问题应该关闭
答案 0 :(得分:30)
您只需删除方括号{}即可使用! - > $this->$key = $value;
答案 1 :(得分:10)
http://www.php.net/manual/en/reflectionproperty.setvalue.php
我认为您可以使用Reflection
。
<?php
function set(array $array) {
$refl = new ReflectionClass($this);
foreach ($array as $propertyToSet => $value) {
$property = $refl->getProperty($propertyToSet);
if ($property instanceof ReflectionProperty) {
$property->setValue($this, $value);
}
}
}
$a = new A();
$a->set(
array(
'a' => 'foo',
'b' => 'bar'
)
);
var_dump($a);
输出:
object(A)[1]
public 'a' => string 'foo' (length=3)
public 'b' => string 'bar' (length=3)
答案 2 :(得分:0)
需要注意的是,不建议在生产模式下使用反射。 根据上下文,这个班轮可以完成这项工作:
$object = json_decode(json_encode($array));