ID: 16265
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Suspended
Bug Type: Scripting Engine problem
Operating System: Linux
PHP Version: 4.1.2
New Comment:
I'm suspending this for now, this issue is not easily solved
unfortunately. But we keep this on the todo list for future releases.
Derick
Previous Comments:
------------------------------------------------------------------------
[2002-04-01 21:37:21] [EMAIL PROTECTED]
Need to open again.
This bug may be suspended.
------------------------------------------------------------------------
[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