ID: 11163
Updated by: thies
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Feature/Change Request
Operating System: any
PHP Version: 4.0.5
New Comment:

please update to 4.0.6 - i cannot reproduce any faulty 
behaviour.



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

[2001-08-31 11:12:24] [EMAIL PROTECTED]

Not a bug. 
Making it a feature request.

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

[2001-05-29 01:35:25] [EMAIL PROTECTED]

I could not believe that serialize does not serialize an object inside of an object 
especially since arrays work and they are an object right?

If I am incorrect please explain.
Thank you



<?
                class test {
                                function toString(){
                                        print "test test test test test";
                                }       //toString()
                } //User        

                
                class User {
                                var $firstName; //first name
                                var $test;      //The type of user  test purposes
                                function User ($fn,$obj){
                                        
                                        $this->firstName=$fn;           
                                        $this->test= $obj;
                                }       //constructor
                                function toString(){
                                        print "user user user user      ";      
                                }       
                } //User        


$temp =new user ('aaa',new test());
$temp->toString();
print"<br>";
$temp->test->toString();

$temp2=serialize($temp);
print"<br>$temp2";
$temp3=unserialize($temp2);
print"<br><br><br>";
print(get_class($temp3));
print"<br><br><br>";
$temp3->toString();
print"<br><br><br>";
$temp3->test->toString();


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



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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to