Is there anything like Python's Pickle module for PHP? I figured something like that could be just as useful in PHP as it would be in Python.
Ok, through a quick google search I found that this was for object serialization, correct? If so, you can simply use the functions serialize/unserialize() to accomplish a similar effect.