ID:               32490
 Updated by:       [email protected]
 Reported By:      ladoo at gmx dot at
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         MySQLi related
 Operating System: Linux (x86)
 PHP Version:      5.0.3
 New Comment:

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".


Previous Comments:
------------------------------------------------------------------------

[2005-03-29 23:41:23] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2005-03-29 21:55:02] ladoo at gmx dot at

Description:
------------
Due to the PHP5 manual the constructor of a class shall be called
__construct and the method named after the class is evaluated only for
compatibility reasons. The constructor of the mysqli class is mysqli,
but it should be __construct.

Reproduce code:
---------------
$x = new mysqli();
if(method_exists($x, "mysqli")) echo  "mysqli exists";
if(method_exists($x, "__construct")) echo "__construct exists";

Expected result:
----------------
__construct exists

Actual result:
--------------
mysqli exists


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=32490&edit=1

Reply via email to