Searched refs:serialized (Results 1 – 25 of 34) sorted by relevance
12
10 $serialized = serialize($tz1);11 var_dump($serialized); 13 $tz2 = unserialize($serialized);
10 $serialized = serialize($date1);11 var_dump($serialized); 13 $date2 = unserialize($serialized);
14 $serialized = serialize($array);16 $deflated = gzdeflate($serialized, 9);
22 function unserialize($serialized)24 echo __METHOD__ . "($serialized)\n";25 $this->data = $serialized;
26 $serialized = array();28 $serialized[$prop] = $val;30 $serialized = serialize($serialized);31 echo __METHOD__ . "() = '$serialized'\n";32 return $serialized;35 function unserialize($serialized)37 echo __METHOD__ . "($serialized)\n";38 foreach(unserialize($serialized) as $prop => $val) {59 function unserialize($serialized)62 return TestBase::unserialize($serialized);
18 $garbage = "obvious non-serialized data";31 // candidate safe idiom for determining whether data is serialized
2 Bug #43614 (incorrect processing of numerical string keys of array in arbitrary serialized data)
53 function unserialize($serialized)86 function unserialize($serialized)
2 …e() functions: objects - ensure that COW references of objects are not serialized separately (unli…
16 $serialized = 'O:1:"C":1:{s:1:"p";i:1;}';18 $incomplete = unserialize($serialized);20 $complete = unserialize($serialized);
18 Empty serialized string cannot be empty
12 Fatal error: Uncaught exception 'UnexpectedValueException' with message 'Empty serialized string ca…
2 SPL: Test that serialized blob contains unique elements (CVE-2010-2225)
2 Bug #34045 (Buffer overflow with serialized object)
2 send/receive serialized message.
2 Generators can't be serialized or unserialized
9 // The following array will be serialized and this representation will be freed later on.
6 module. This means that all PHP-requests are serialized (ie only one
95 printf("\nUnserializing the previously serialized object...\n");130 Unserializing the previously serialized object...
12 All requests to the PHP userspace module are currently serialized.
7 NOTE: All HTTP requests will be serialized. That means, one long running
604 function unserialize($serialized); argument
118 implementing Serializable will always start with "C:" in the serialized
Completed in 25 milliseconds