Hey everyone . . .
I've been recently learning about OOP and PHP (using classes ans whatnot), and I've stumbled upon something I'm having trouble understanding . . . serializing objects.
I've read the manual, and the downloadable PHP help file (basically the same thing), and I still don't quite understand it. Maybe I'm just missing something when I'm reading it ? ? ?
"serialize() returns a string containing a byte-stream representation of any value that can be stored in PHP. unserialize() can use this string to recreate the original variable values. Using serialize to save an object will save all variables in an object. The functions in an object will not be saved, only the name of the class." -PHP manual
Can someone help me understand it a bit ?
What is the purpose of serializing objects ?