From: [EMAIL PROTECTED]
Operating system: All
PHP version: 4.0.5
PHP Bug Type: Class/Object related
Bug description: in PHP4 constructors still seem to behave like in PHP3
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?
--
Edit bug report at: http://bugs.php.net/?id=12277&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]