可能重复:
PHP - 使用数组参数初始化对象成员
我正在寻找一种方法让我的类将关联数组中的数据应用到它自己的成员变量中。但是,如果这些变量不存在,则该过程不应引发任何错误。
请注意:我不是在寻找 extract() 函数的作用,就是我误解了它的行为。
例子:
class customer {
public $firstName;
public $lastName;
public $email;
public function apply($data){
/* here i want to be able to iterate through $data and set the class
variables according to the keys, but without causing problems
(and without creating the variable in the class) if it does not exist
(yet)) */
}
}
$c=new customer();
$c->apply(array(
'firstName' => 'Max',
'lastName' => 'Earthman',
'email' => 'max@earthman.com'
));
希望描述正确。
请询问是否有任何不清楚的地方。