06-14-2009, 10:27 PM
|
#3 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
|
...and check how much faster (or slower) it is...
Here's an example with serialize/unserialize failing:
PHP Code:
$array = array(1 => 'one', "some kind of text\nanother line");
$serialized = serialize($array); // it's broken
unserialize($serialized); // fails to unserialize it
though that simple example works...the problem is with big objects containing alot of properties.
thanks for the links.
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
|
|
|
|