From: [EMAIL PROTECTED] Operating system: N/A PHP version: 4.0.6 PHP Bug Type: Documentation problem Bug description: No echo call in example code On the manual page: http://www.php.net/manual/en/language.oop.constructor.php The following code lacks an "echo" in function C (shown in square brackets). ------- class A { function A() { echo "I am the constructor of A.<br>\n"; } } class B extends A { function C() { [should have echo here?] "I am a regular function.<br>\n"; } } // no constructor is being called in PHP 3. $b = new B; -- Edit bug report at: http://bugs.php.net/?id=12750&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]