PHP 动态设置对象属性
我有一个函数,它应该读取数组并动态设置对象属性。
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);
好吧,显然它不起作用,有没有办法做到这一点?
编辑
似乎这个代码没有错,问题应该关闭