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

[eluser]Michael McCabe[/eluser]
Good morning/afternoon to everyone.

I just wrote a big explanation of why I wanted to do this but decided it would be better to just ask if it's possible so...

I would like to iterate through my models attributes in a function of that object. For example —
Code:
class Jobs_model extends Model {

    public $jobref;
    public $clientid;
    public $title;
    
    function Jobs_model()
    {
        parent::Model();
    }

    function get() {
        
        foreach($this as $key => $val)
            $this->db->where($key, $val);    
        }
        
}

This works, if I were to print each iteration's value I get the first three variables, however I then (perhaps obviously to you) get every class which codeigniter has.

Is there any way to iterate through an objects attributes from within the object itself?

Thanks for any help you can provide.


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