+ ------------------------------------------------------------------------------- + | = This article is Haohappy read < > | = Notes in the middle Classes and Objects chapter | = translation + personal experience | = Do not repost to avoid unnecessary troubles, thank you | = welcome to criticize and correct, hope to make progress together with all PHP enthusiasts! + ----------------------------------------------------------------------------- + */Section 13th-Object serialization can include objects and convert them into continuous bytes data. you can save serialized variables in a file or transmit them over the network. then, the data is deserialized and restored to the original data. PHP can successfully store the attributes and methods of the objects defined before the objects of the deserialization class. sometimes you may need an object to be executed immediately after deserialization. for this purpose, PHP will automatically find the _ sleep and _ wakeup methods. when an object is serialized, PHP calls the _ sleep method (if any ). after an object is deserialized, PHP calls the _ wakeup method. both methods do not accept parameters. the _ sleep method must return an array containing the attributes to be serialized. PHP will discard other attribute values. if the _ sleep method is not available, PHP will save all attributes. example 6.16 shows how to serialize an object using the _ sleep and _ wakeup methods. the Id attribute is a temporary attribute not intended to be retained in the object. the _ sleep method ensures that the id attribute is not included in the serialized object. when a User object is deserialized, The __wakeup method creates a new value for the id attribute. this example is designed to be self-sustaining. in actual development, you may find that objects containing resources (such as or data streams) need these methods. listing 6.16 Object serialization Id = uniqid ();} function _ sleep () {// do not serialize this-> id not serialized id return (array ("name "));} function _ wakeup () {// give user a unique ID $ this-> id = uniqid () ;}// create object to create an object $ u = new User; $ u-> name = "Leon"; // serialize it serializization note that the id attribute is not serialized, And the id value is discarded $ s = serialize ($ u ); // unserialize it deserialization id is re-assigned $ u2 = unserialize ($ s ); // $ u and $ u2 have different IDs $ u and $ u2 have different IDs print_r ($ u); print _ R ($ u2);?>