Francisco M. Marzoa Alonso wrote:
Hi,

Is it possible to convert an array in an object instance?

I can convert an object in an array as follows:

$Test = new MyClass ();
$TestArray = (array) $Test;

Then I've an array with all members of the object $Test, but it seems
that I cannot simply do:

$TestObject = (MyClass) $TestArray;
$TestObject = (object) $TestArray;

To recover the object in the inverse way, so... is there any manner to do this?

Thanks a lot in advance,


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to