Re: [PHP] parent functions and derived classes - the data problem

2001-02-26 Thread John Donagher
Actually, static calls aren't so static when they're calling a method which is in the inheritance tree. In other words, parent:: calls (assuming the subclass is instanciated) will operate instanciated. John On Tue, 27 Feb 2001, Tyson Lloyd Thwaites wrote: > Hi all, > > I understand that you

[PHP] parent functions and derived classes - the data problem

2001-02-26 Thread Tyson Lloyd Thwaites
Hi all, I understand that you can call the parent function from within an overriding child function using the parent::method syntax. That's OK. My problem is...I need the parent's data! (I know that the class has no data, only objects of that class have data, etc etc.) I have a class that ca