note 14080 deleted from function.serialize by felipe
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: abk at avatartechnology dot com ---- BEWARE: if you are serializing a complex object with recursive references, serialize a reference to the object. Otherwise you'll get strange and mysterious results. Always this: $str = serialize(&$object); not this: $str = serialize($object);