| Article: |
Object Overloading in PHP 5 | |
| Subject: | __construct overloading | |
| Date: | 2006-07-24 02:07:36 | |
| From: | abc@yahoo.com | |
|
why the following code gives error! <? class A { public function __construct() { echo "hye"; } public function __construct($p) { echo $p,"<br />"; } } $ob1 = new A(5); $ob2 = new A(); ?>
|
||
Showing messages 1 through 1 of 1.
-
__construct overloading
2006-07-24 08:25:38 MartinJansen [View]



<?php
...
public function __construct($p = null) {
if ($p === null) {
echo "hye";
} else {
echo $p . "<br />";
}
}
...
?>