Hi!
I have been thinking (not testing yet) what happens if I have something
like:
class a
{ ...}
class b
{ var a_item = new a(); ...}
$john = new b();
$ser = serialize($john );
Is the definition of class a also serialized with john and definition of
class b?
- Perttu Pulkkinen, Finland
I have been thinking (not testing yet) what happens if I have something
like:
class a
{ ...}
class b
{ var a_item = new a(); ...}
$john = new b();
$ser = serialize($john );
Is the definition of class a also serialized with john and definition of
class b?
- Perttu Pulkkinen, Finland
Comment