From 38ae4e994c5bf195f87d950541b722adcc09c7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20K=C3=B6hntopp?= Date: Fri, 18 May 2001 07:47:01 +0000 Subject: [PATCH] Completed the unfinished sentence. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@47753 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop.xml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/language/oop.xml b/language/oop.xml index e09d3fb3ca..391b71c08d 100644 --- a/language/oop.xml +++ b/language/oop.xml @@ -511,10 +511,19 @@ $b->example(); Serializing objects - objects in sessions + + + In PHP3, objects will lose their class association + throughout the process of serialization and unserialization. + The resulting variable is of type object, but has no class + and no methods, thus it is pretty useless (it has become + just like an array with a funny syntax). + + + - The following information is valid for PHP4 only. In - PHP3, an + The following information is valid for PHP4 only.