From: [EMAIL PROTECTED]
Operating system: linux/rh7.0 std
PHP version: 4.0.3pl1
PHP Bug Type: Scripting Engine problem
Bug description: Strange behaviour initialing extended class
Hi,
PHP acts strangely when calling a parent class constructor from an extended class.
PHP4 seems to call the constructor without arguments instead of the one with the right
number of arguments.
Regards,
Ari Nyk�nen
// -------- clip clip clip ----------------
<script language="php">
class Huikkari {
var $huikkasana="initial";
function Huikkari($huikkasana) {
$this->huikkasana=$huikkasana;
}
function Huikkari() {
$this->huikkasana="default";
}
function huikkaa () {
echo ($this->huikkasana."\n");
return true;
}
}
class HelloHuikkari extends Huikkari {
function helloHuikkari () {
// *** possible problem here *** the following line seems
// to call the Huikkari constructor with no arguments
$this->Huikkari('Hello World');
}
}
$helloHuikkari = new HelloHuikkari();
// I think the following line should
// output 'Hello World' instead of 'defaultt'
$helloHuikkari->huikkaa();
</script>
--
Edit Bug report at: http://bugs.php.net/?id=9618&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]