php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24151 Not overloading methods.
Submitted: 2003-06-12 09:39 UTC Modified: 2003-06-12 09:55 UTC
From: dias@php.net Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 4.3.1 OS: windows xp pro
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: dias@php.net
New email:
PHP Version: OS:

 

 [2003-06-12 09:39 UTC] dias@php.net
Description:
------------
When I write two methods in a class, the interpreter emits an error.

The error says that the program cannot redeclare the method. 

Reproduce code:
---------------
<?php

class Foo {

   var $_foo;

   function Foo(){}
   function Foo( $foo ){
     $this->_foo = $foo;
   }
}
?>

Expected result:
----------------
I expect use the two methods. When it will be convenient.


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-06-12 09:55 UTC] derick@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

No bug
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 04:01:29 2024 UTC