Section 13th -- object serialization -- ClassesandObjectsinPHP5 [13]

Source: Internet
Author: User
Tags object serialization
Section 13th-serializable object serialization: you 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. syntaxHighlighter. all (); Section 13th -- Object Serialization

Serializing variables, including objects, can be converted 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);?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.