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 str_replace()?
What are the different errors in php?
Does csrf token change?
What is preg_match?
What is a controller in programming?
Is php an oop?
Which php framework is best for security?
What is php crud api?
What are the new features available in php 7?
Which is better mysql or sql?
What is the difference between apache vs niginx?
Why many companies are switching their current business language to php?
How send email in php?
What does $_env means?
What is framework in php for beginners?