Welcome Guest, Not a member yet? Register   Sign In
Iterate a model's attributes within the model?
#11

[eluser]Dam1an[/eluser]
You can read about magic methods here
The idea behind the __get/__set methods, is it provides a nice way for manipulating private variables, so you could do something like
Code:
private $attributes = array();

public function __set($name, $value) {
    switch($name) {
        case 'jobref': $this->attributes['jobref'] = $value; break;
        case 'title': $this->attributes['title'] = $value; break;
        etc
    }
}

You could then just loop through the array as before in the get method


Messages In This Thread
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 09:01 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 09:12 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 09:27 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 09:41 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 10:17 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 10:30 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 10:36 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 10:40 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 10:44 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 11:05 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 11:36 AM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 01:32 PM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 01:32 PM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 01:44 PM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 02:08 PM
Iterate a model's attributes within the model? - by El Forum - 05-09-2009, 02:09 PM
Iterate a model's attributes within the model? - by El Forum - 12-14-2009, 06:21 PM



Theme © iAndrew 2016 - Forum software by © MyBB