[PHP] Parent class

2001-04-02 Thread Milan Mlynarcik
Is there way to access paret class from outside of class ??? I know that to access parent object from within the class I can use code like this one: ?php class a { vara; function a() { $this-a = "OK"; } } class b extends a {

Re: [PHP] Parent class

2001-04-02 Thread Yasuo Ohgaki
Did you try $b-a()? It should work. -- Yasuo Ohgaki "Milan Mlynarcik" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is there way to access paret class from outside of class ??? I know that to access parent object from within the class I can use code like