Re: [PHP-DEV] Re: static/object method

2004-06-24 Thread Hans Lellelid
Alan Knowles wrote: the E_STRICT warnings on static calls to non static methods are probably usefull, (as $this could be defined totally randomly), so it does make some sense.. btw: does that mean: class a { function find() { } } class b extends a { function find() { } } // call the toplevel par

Re: [PHP-DEV] Re: static/object method

2004-06-24 Thread Alan Knowles
the E_STRICT warnings on static calls to non static methods are probably usefull, (as $this could be defined totally randomly), so it does make some sense.. btw: does that mean: class a { function find() { } } class b extends a { function find() { } } // call the toplevel parent method.. (skip t