From:             joel at purerave dot com
Operating system: win2k sp4
PHP version:      5.2.9
PHP Bug Type:     MySQLi related
Bug description:  fetch_object calls __set before constructor

Description:
------------
mysqli_fetch_object with custom class calls __set() before constructor.

Reproduce code:
---------------
<?php
$mysqli = new mysqli("localhost", "root", "root", "test");
class myData {
        function __construct($param) {
                echo 'creating'.PHP_EOL;
        }
        function __set($name, $value) {
                $this->{$name} = $value;
                echo 'setting'.PHP_EOL;
        }
}

$sql = "SELECT id FROM test LIMIT 1";
$result = $mysqli->query($sql);
while ($obj = $result->fetch_object('myData', array('data'))) {
}

Expected result:
----------------
creating
setting


Actual result:
--------------
setting
creating


-- 
Edit bug report at http://bugs.php.net/?id=48487&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=48487&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=48487&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=48487&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=48487&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=48487&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=48487&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=48487&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=48487&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=48487&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=48487&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=48487&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=48487&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=48487&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=48487&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=48487&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=48487&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=48487&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=48487&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=48487&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=48487&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=48487&r=mysqlcfg

Reply via email to