ID:               35182
 User updated by:  webmaster at mif dot it
 Reported By:      webmaster at mif dot it
 Status:           Open
 Bug Type:         MySQLi related
 Operating System: Win XP Pro
 PHP Version:      5.0.5
 New Comment:

Improving text


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

[2005-11-10 14:28:20] webmaster at mif dot it

Description:
------------
Cannot use Mysqli functions, without using references.

Reproduce code:
---------------
This code:
$db = mysqli_connect('localhost','Matteo','teo28273');
and this doesn't works:
$db = new mysqli('localhost','Matteo','teo28273');

This code:
$db =& mysqli_connect('localhost','Matteo','teo28273');
and this code works:
$db =& new mysqli('localhost','Matteo','teo28273');



Expected result:
----------------
The following code (and all mysqli functions) work properly:

$db = mysqli_connect('localhost','Matteo','teo28273'); or
$db = new mysqli('localhost','Matteo','teo28273');



Actual result:
--------------
Produces this error:
#Fatal error: Trying to clone an uncloneable object of class mysqli in
[***]\index.php on line 4



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


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

Reply via email to