ID:               33061
 Updated by:       [EMAIL PROTECTED]
 Reported By:      online at natweiss dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Class/Object related
 Operating System: Linux
 PHP Version:      4.3.10
 New Comment:

Please try using this CVS snapshot:

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




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

[2005-05-19 02:39:30] online at natweiss dot com

Description:
------------
See reproduce code.

php.ini is stock / no changes.

Reproduce code:
---------------
<?php
// a class that does nothing
class something{
        function nothing(){
                }
        }
// a pass-by-value function that modifies a member's member
function pass_by_value($value){
        $value->member->val = 1;
        }
// create a something with a member something
$object = new something;
$object->member = new something;

// call nothing, then call pass_by_value and print results
$object->member->nothing();
echo "member->val should be empty!\n";
pass_by_value($object);
print_r($object);
?>

Expected result:
----------------
$object->member should be empty

Actual result:
--------------
$object->member->val == 1


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


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

Reply via email to