note 102781 deleted from language.oop5.magic by danbrown
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: Alin Purcaru
----
@Sammaye
Note that in order to use isset you need to define the __isset magic method.
So in your case you should add
<?php
public function __isset($key){
return array_key_exists($key, $this->attributes);
}
?>
to the class.