Home
last modified time | relevance | path

Searched refs:serialize (Results 1 – 25 of 145) sorted by last modified time

123456

/PHP-5.5/tests/classes/
H A Dserialize_001.phpt16 function serialize()
38 $ser = serialize(new Test($data));
54 Test::serialize(String)
67 Test::serialize()
72 Test::serialize(42)
73 Exception: Test::serialize() must return a string or NULL
77 Test::serialize()
78 Exception: Test::serialize() must return a string or NULL
H A Dprivate_members_serialization.phpt20 var_dump(str_replace("\0", '\0', serialize(new bar())));
/PHP-5.5/
H A Dphp.ini-development1435 ; Handler used to serialize data. php is the standard serializer of PHP.
1436 ; http://php.net/session.serialize-handler
H A Dphp.ini-production1435 ; Handler used to serialize data. php is the standard serializer of PHP.
1436 ; http://php.net/session.serialize-handler
/PHP-5.5/ext/wddx/tests/
H A D004.phpt2 wddx session serializer handler (serialize)
/PHP-5.5/ext/sysvmsg/
H A Dsysvmsg.c52 ZEND_ARG_INFO(0, serialize)
/PHP-5.5/ext/standard/
H A Dvar_unserializer.c417 …if (ce->serialize == NULL || ce->unserialize == zend_user_unserialize || (ZEND_INTERNAL_CLASS != c… in object_common1()
H A Dvar_unserializer.re421 …if (ce->serialize == NULL || ce->unserialize == zend_user_unserialize || (ZEND_INTERNAL_CLASS != c…
H A Dvar.c774 if (ce && ce->serialize != NULL) { in php_var_serialize_intern()
779 …if (ce->serialize(struc, &serialized_data, &serialized_length, (zend_serialize_data *)var_hash TSR… in php_var_serialize_intern()
915 PHP_FUNCTION(serialize) in PHP_FUNCTION() argument
/PHP-5.5/ext/standard/tests/strings/
H A Dbug68710.phpt16 $z = serialize($m);
20 $z = serialize($y);
H A Dbug72434.phpt12 $serialized_payload = 'a:3:{i:1;N;i:2;O:10:"ZipArchive":1:{s:8:"filename";'.serialize($free_me).'}i…
H A Dbug25671.phpt13 echo serialize(str_replace("string", "strung", $arr)) . "\n";
14 echo serialize(str_replace("string", "strung", $arr)) . "\n";
15 echo serialize(str_replace(" ", "", $arr)) . "\n";
16 echo serialize(str_replace(" ", "", $arr)) . "\n";
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug23298.phpt2 Bug #23298 (serialize() and floats/doubles)
9 $bar = unserialize(serialize($foo));
H A Dbug45706.phpt11 $s = serialize($x);
H A Dbug65806.phpt21 $this->_serialized = serialize($this->_obj);
29 $this->_serialized = serialize($this->_obj);
56 echo "start serialize/unserialize" . PHP_EOL;
57 $newList = unserialize(serialize($list));
58 echo "finish serialize/unserialize" . PHP_EOL;
79 start serialize/unserialize
80 finish serialize/unserialize
H A Dbug67072_2.phpt18 function serialize() { return "";}
H A Dbug68594.phpt15 $z = serialize($m);
18 $z = serialize($y);
H A Dbug70172_2.phpt7 function serialize() {
8 return serialize($this->data);
H A Dbug70219.phpt7 function serialize() {
8 return serialize($this->data);
H A Dbug70219_1.phpt10 function serialize() {
11 return serialize($this->data);
H A Dincomplete_class.phpt6 $d = serialize(new __PHP_Incomplete_Class);
H A Dprecision.phpt2 Default precision is sufficient to serialize all the information in floats
29 $num2 = unserialize(serialize($num));
H A Dserialization_arrays_001.phpt2 Test serialize() & unserialize() functions: arrays (circular references)
7 /* Prototype : proto string serialize(mixed variable)
22 $serialize_data = serialize($arr_circ);
31 $serialize_data = serialize($arr_asso);
H A Dserialization_arrays_002.phpt5 /* Prototype : proto string serialize(mixed variable)
18 $ser = serialize($a);
H A Dserialization_arrays_003.phpt5 /* Prototype : proto string serialize(mixed variable)
18 $ser = serialize($a);

Completed in 47 milliseconds

123456