Re: [PHP] inheritance php4

2006-12-12 Thread Brad Bonkoski
lto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 11:00 AM To: php-general@lists.php.net Subject: [PHP] inheritance php4 Ok, I have a class which inherits from a parent class. My first thought is that the child class inherits all of the functions of the parent but that doesn't seem to be

RE: [PHP] inheritance php4

2006-12-12 Thread bruce
, December 12, 2006 11:00 AM To: php-general@lists.php.net Subject: [PHP] inheritance php4 Ok, I have a class which inherits from a parent class. My first thought is that the child class inherits all of the functions of the parent but that doesn't seem to be the case, do I really hav

[PHP] inheritance php4

2006-12-12 Thread blackwater dev
Ok, I have a class which inherits from a parent class. My first thought is that the child class inherits all of the functions of the parent but that doesn't seem to be the case, do I really have to put parent::somefunction() to call each one? Why can't I just use $this->parentfunction(); within