PHP Serialize ()

Source: Internet
Author: User
Tags string back

serialize- produces a representation of a value that can be stored

string serialize ( mixed $value )

Serialize () returns a string that contains the value byte stream represented and can be stored anywhere.

This facilitates the storage or delivery of PHP values without losing their type and structure.

To change the serialized string back to PHP's value, use unserialize (). serialize () can handle any type except resource. You can even serialize () those arrays that contain pointers to their own references. The references in the array/object you are serialize () will also be stored.

When serializing an object, PHP will attempt to call the object's member function __sleep () before the sequence action . This allows the object to do any cleanup before it is serialized. Similarly, when you use unserialize () to restore an object, the __wakeup () member function is called.

Note:

In PHP 3, the object properties will be serialized, but the method will be lost. PHP 4 Breaks This limit and can store properties and methods at the same time. See the serialization Objects section of classes and objects for more information.

PHP Serialize ()

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.