ID:               24625
 Updated by:       [EMAIL PROTECTED]
 Reported By:      martin at bang dot ca
-Status:           Open
+Status:           Closed
 Bug Type:         Session related
 Operating System: RH7.3
 PHP Version:      4.3.2
 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

Seems to be fixed. (works fine here)



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

[2003-07-12 17:34:31] martin at bang dot ca

Description:
------------
CONFIG:
./configure --with-apxs=/usr/local/apache/bin/apxs
--with-png-dir=../libpng-1.2.5/ --with-zlib-dir=../zlib-1.1.4/
--enable-ftp --with-jpeg-dir=../jpeg-6b/ --with-mysql=../../mysql
--enable-gd-imgstrttf --enable-gd-native-ttf --with-mm=../mm-1.3.0/
--enable-trans-sid --with-mcrypt --enable-memory-limit --with-gd
--enable-cgi-redirect

Making any of a registered object's variables into floats de-registers
the object from the session.



Reproduce code:
---------------
session_start();
session_register( "test" );
echo "IS OBJECT: " . is_object( $test );

class testclass {
        var $float;
        
        function testclass() {
                $this->float = 2;
        }
        
        function setValue( $val ) {
                $this->float = $val;
        }
}
$test = new testclass();
//$test->setValue( 2.0 ); //uncomment here


Expected result:
----------------
In the provided code, running the script and reloading the page
returns:

IS OBJECT: 1

which is fine

Actual result:
--------------
Now, uncommenting the last line of the script, which sets
"$this->float" to a float value and reloading the page returns:

IS OBJECT:

which is not good. $test is no longer recognized as an object.


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


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

Reply via email to