Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What happens when you serialize data? Seriously, I'm being bothered about what's the use of it, I have been searching through the web but they seem to give only the usage, not the reasons why to use it. .My task is to serialize data before inserting it as post_meta data in wordpress, and I'm a bit lost. Any help will be appreciated. Thanks.

share|improve this question
why is my question voted down? – bunsiChi May 10 '12 at 8:28
I think the one who voted down my question is also the one responsible for me not being able to ask questions anymore.what can i do so that i can ask questions again.? – bunsiChi May 16 '12 at 4:47

closed as not a real question by EJP, casperOne May 10 '12 at 19:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

7 Answers

up vote 2 down vote accepted

Wiki: [S]erialization is the process of converting a data structure or object state into a format that can be stored [...] and "resurrected" later in the same or another computer environment.

Simply put, by serialization you can store an object in a transmittable and storable state. Converting an in-memory object to XML to send it to a SOAP service is serialization. PHP serializes your $_SESSION array into a session file (at least by default). An ORM serializes your objects into an SQL query. JSON can represent serialized objects to be transferred between server and browser.

As for your question, I don't know how this applies to Wordpress though or what your question actually is, perhaps you should show some code.

share|improve this answer

Data might need to be serialized to allow it to be successfully stored and retrieved from a database in a form that PHP can understand.

WordPress uses different functions for serialization. Check the following function references

  1. maybe serialize <?php maybe_serialize( $data ); ?>
  2. is serialized <?php is_serialized( $data ) ?>
share|improve this answer

Generally speaking, serialization is a way for store object or data structure in something you can store. Java has its own way, JavaScript has JSON and so on.

It's really useful for store objects or complex data structure in databases.

share|improve this answer

Serialization makes it possible to save your object/data structure to memory or a file. When you de-serialize you are able to retrieve this information in the same state as it was before.

From Wikipedia:

http://en.wikipedia.org/wiki/Serialization

Serialization is the process of converting a data structure or object state into a format that can be stored (for example, in a file or memory buffer, or transmitted across a network connection link) and "resurrected" later in the same or another computer environment.

To answer your question, what actually happens is that the object is converted and structured in a way so it is possible to retrieve this data later. For example, you can serialize an object into an xml-structure.

share|improve this answer

Serialization

This process makes a storable representation of a value that is useful for storing or passing PHP values around without losing their type and structure.

UN-Serialization:

This process takes a single serialized variable and converts it back into a PHP value.

share|improve this answer
Wordpress seems to have some serious issues with serialization please check the webblogs for more details – narendra kumar botta May 10 '12 at 8:15

You ask why do we serialize data . Data is serialised for the purpose of storing or transmitting in a format ( as a series of bits ) , the stored format of the bits make sense when it is recreated at the recieving end , this recreation can happen in another envirornment or in another application than the application which did the serialisation .

share|improve this answer

WordPress has a reputation of being very portable but after reading a recent article on WPGarage.com, there is a certain condition in which the data in WordPress can become non-portable. It has to do with the serialization of data. However, they offer up a few different ways in which to deal with the problem so that you don’t lose data via a database dump.

share|improve this answer
so, what you are saying is? – bunsiChi May 10 '12 at 8:07
use JSON instead of serialization it's great – Jaiff May 10 '12 at 8:15
This doesn't answer the question at all! – itachi May 10 '12 at 8:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.