ID:               16265
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Closed
+Status:           Open
 Bug Type:         Scripting Engine problem
 Operating System: Linux
 PHP Version:      4.1.2
 New Comment:

Need to open again.
This bug may be suspended.


Previous Comments:
------------------------------------------------------------------------

[2002-03-25 15:32:48] [EMAIL PROTECTED]

Fixed in CVS, will also be in PHP 4.2.0

Derick

------------------------------------------------------------------------

[2002-03-25 13:12:42] [EMAIL PROTECTED]

PHP does not report multiply-defined errors for class member functions.
For example, the following script below, when executed, only outputs
"two", with no errors.

Instead, PHP should be giving error messages since the function bar has
been defined multiple times.

<?
class foo
{
        function bar() {echo "one\n";}
        function bar() {echo "two\n";}
}

$f = new foo();
$f->bar();

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=16265&edit=1

Reply via email to