|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-08-11 06:37 UTC] georg@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
Description: ------------ I've posted this problem to the php.db mailinglist, as well as asked in three different php-related irc-channels, in which no-one could explain this behaviour. Although I haven't been able to reproduce this problem on another machine (none available), I suspect it to be a bug. ----- I'm running php5.0.0 with mysqli extention as a Apache2 module on a Windows XP box. I've tested the database by querying it with mysqli (procedural) and results are coming back just fine. This makes me believe that the mysqli-extention is working properly. Running this code (see 'reproduce code'), you would expect an output like "xconstructorytest" however, I'm getting "xy" (the private member $somevar isn't set and/or read). No reported errors or warnings. Changing the line that says class database_foobar extends mysqli to class database_foobar gets me the expected result of "xconstructorytest". Somehow, making the class an extention of mysqli, seems to interfere with calling the $somevar member. Reproduce code: --------------- error_reporting(E_ALL); class database_foobar extends mysqli { private $somevar; function database_foobar() { $this->somevar = "constructor"; echo "x"; echo $this->somevar; } function test() { $this->somevar = "test"; echo "y"; echo $this->somevar; } } $foo = new database_foobar(); $foo->test(); Expected result: ---------------- xconstructorytest Actual result: -------------- xy