php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12277 in PHP4 constructors still seem to behave like in PHP3
Submitted: 2001-07-20 07:51 UTC Modified: 2001-11-17 13:42 UTC
From: jack at mobil dot cz Assigned:
Status: Closed Package: Class/Object related
PHP Version: 4.0.5 OS: All
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
41 - 19 = ?
Subscribe to this entry?

 
 [2001-07-20 07:51 UTC] jack at mobil dot cz
the following code:
<?
class A {
    function A() {
        echo "I am the constructor of A.<br>\n";
    }
}

class B extends A {
    function C() {
        echo "I am a regular function C.<br>\n";
    }
}

class C extends B {
}

$b = new C();
?> 
in PHP 4.0.5 prints:
I am a regular function C.<br>

is this correct?


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-11-17 13:42 UTC] mfischer@php.net
This is a current implementation limitation.

Just define your real C constructor and access the other C method with parent::C().

Closed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 06:01:29 2024 UTC