/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function __call($name, $arguments) { } else { } } function __get($name) { if(property_exists($this->Email, $name)) { return $this->Email->$name; } else { } } function __set($name, $value) { if(property_exists($this->Email, $name)) { $this->Email->$name = $value; } else { } }