The first example was a mistake.  The second is a correct example.
I just wasn't sure on the proper format $this->that->foo($bar), if it is 
technically correct...
Thanks


Michael Davey wrote:

>I believe so - but why are you passing a the object a reference to itself?
>
>  
>
>>$bar->db_obj->run_some_code($bar);
>>$bar->tpl_obj->do_this_for_me($bar);
>>    
>>
>.
>If you need to access parts of the object from within, use the $this->
>pointer.
>
>  
>
>>It works but was wondering if its 'legal' to use it like this ->
>>$lcre->db_obj->run_some_code($bar);
>>$lcre->tpl_obj->do_this_for_me($bar);
>>    
>>
>
>This looks like it makes more sense as you are passing a reference to $bar
>into $lcre - as long as your function is setup to accept this type of object
>and knows what to do with it.
>
>Mikey
>
>
>
>  
>

-- 
Gerard Samuel
http://www.trini0.org:81/
http://dev.trini0.org:81/




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to