Answer Posted / sloog
Serializing an object means converting it to a bytestream
representation that can be stored in a file. This is useful
for persistent data; for example, PHP sessions automatically
save and restore objects. Serializatioin in PHP is
mostly automatic--it requires little extra work from you,
beyond calling the serialize() and unserialize() functions:
$encoded = serialize(something);
$something - unserialize(encoded);
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a query in php?
Which function would you use to merge two arrays in php?
Is array empty php?
What changes I have to do in php.ini file for file uploading?
What is the role of php.ini file?
What is meant by session in php?
What is the difference between pop3 IMAP and MAPI?
How to define a user function?
List the different types of print functions available in php?
What is member variable?
What is the use of header in php?
What is php regular expression?
How to pass variables and data from php to javascript?
Which functions are used to count the total number of array elements in php?
How to check your php installation?