Home
last modified time | relevance | path

Searched refs:serialized (Results 1 – 25 of 47) sorted by relevance

12

/plugin/authfacebook/lib/
H A DFacebookApp.php102 * @param string $serialized
104 public function unserialize($serialized) argument
106 list($id, $secret) = explode('|', $serialized);
/plugin/fedauth/Auth/OpenID/
H A DKVForm.php89 $serialized = '';
106 $serialized .= "$key:$value\n";
108 return $serialized;
/plugin/openid/Auth/OpenID/
H A DKVForm.php94 $serialized = '';
111 $serialized .= "$key:$value\n";
113 return $serialized;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/_fixture/
H A DClassThatImplementsSerializable.php9 public function unserialize($serialized) argument
11 foreach (unserialize($serialized) as $key => $value) {
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DIteratorHandlerTest.php53 $serialized = $serializationHandler(
59 self::assertSame(self::DATA, $serialized);
70 $serialized,
/plugin/fckg/scripts/
H A Drefresh_save.php66 $serialized = FCK_ACTION_SUBDIR . 'ent.ser';
67 $ents = unserialize(file_get_contents($serialized));
/plugin/fckg/action/entities/
H A Dents_seri.php26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable
27 file_put_contents($serialized,serialize($entities));
/plugin/ckgdoku/action/entities/
H A Dents_seri.php26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable
27 file_put_contents($serialized,serialize($entities));
/plugin/ckgedit/action/entities/
H A Dents_seri.php26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable
27 file_put_contents($serialized,serialize($entities));
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/GUI/
H A DHTML.php204 $serialized = '(\w:\d+:(?:"[^"]+":\d+:)?\{.*\})';
208 …if (preg_match('/^(.*)expected ' . $serialized . ', actual ' . $serialized . '$/sU', $exception, $…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DContextTest.php182 $serialized = $serializer->serialize($object, 'json', $context);
184 $data = json_decode($serialized, true);
199 $serialized = $serializer->serialize($object, 'json', $context);
201 $data = json_decode($serialized, true);
H A DJsonSerializationTest.php312 $serialized = $this->serialize($object);
313 self::assertEquals('{"a":"b","c":"d"}', $serialized);
314 self::assertEquals($object, $this->deserialize($serialized, ObjectWithInlineArray::class));
H A DXmlSerializationTest.php375 $serialized = $this->serialize($object);
376 self::assertEquals($this->getContent('object_with_xml_namespaces'), $serialized);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst7 you to define which properties of your objects should be serialized.
15 object will be serialized. If you only want to expose a few of the properties,
129 In some cases you want to control more precisely what is serialized because you may have the same c…
228 You can limit the depth of what will be serialized in a property with the
231 affect the serialized content of others classes than the one you apply the
257 property is 1, the user friends would be serialized, but not their friends;
259 be serialized, and their author would also be serialized.
/plugin/fckg/action/
H A Dsave.php157 $serialized = FCK_ACTION_SUBDIR . 'ent.ser';
158 $ents = unserialize(file_get_contents($serialized));
/plugin/rssticker/
H A DlastRSS.php76 $serialized = serialize($result);
78 fwrite ($f, $serialized, strlen($serialized));
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst13 | | with @Expose will be serialized/unserialized |
16 | | those marked with @Exclude will be serialized/unserialized |
30 be serialized/unserialized. Works only in combination with AllExclusionPolicy.
38 not be serialized if the result will be "empty".
44 This annotation can be defined on a property to define the serialized name for a
67 version this property is available. If an earlier version is serialized, then
74 property was available. If a later version is serialized, then this property is
81 should be serialized when only serializing specific groups (see
87 content will be serialized. It is very useful when a property will contain a
290 object has been serialized.
[all …]
H A Dxml_reference.rst24 serialized-name="foo"
60 serialized-name="foo"
79 serialized-name="foo"
/plugin/findologicxmlexport/vendor/jms/serializer/tests/
H A DSerializerBuilderTest.php250 $serialized = $serializer->serialize($person, 'json');
251 self::assertEquals('{"name":"mike","gender":"f"}', $serialized);
253 $object = $serializer->deserialize($serialized, PersonSecretWithVariables::class, 'json');
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCache.SerializerPath.txt
/plugin/ckgdoku/action/
H A Dsave.php309 $serialized = FCK_ACTION_SUBDIR . 'ent.ser';
310 $ents = unserialize(file_get_contents($serialized));
/plugin/ckgedit/action/
H A Dsave.php403 $serialized = FCK_ACTION_SUBDIR . 'ent.ser';
404 $ents = unserialize(file_get_contents($serialized));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dsearch-operations.asciidoc103 difference is that the JSON response is serialized back into PHP arrays. Working
178 Notice that the `must` clause accepts an array of arrays. This is serialized
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DUPGRADING.md12 - Removed `AdvancedNamingStrategyInterface`, the serialized name is now compiled and can not be cha…
H A DCHANGELOG.md233 - Feature proposal: dynamic property serialized name [\#225](https://github.com/schmittjoh/serializ…
265 - Not all virtual properties are serialized [\#864](https://github.com/schmittjoh/serializer/issues…
377 - inline array with type array\<K, V\> not serialized [\#784](https://github.com/schmittjoh/seriali…
447 - Array gets serialized as object, not as array, depending on order. [\#709](https://github.com/sch…
454 - Array serialized as JSON object [\#706](https://github.com/schmittjoh/serializer/issues/706)
474 - serialized\_name for discriminator [\#372](https://github.com/schmittjoh/serializer/issues/372)
481 - Integer serialized as String using VirtualProperty [\#289](https://github.com/schmittjoh/serializ…
696 - Class name not reflecting in serialized json [\#662](https://github.com/schmittjoh/serializer/iss…
743 - Customize how Booleans are serialized [\#180](https://github.com/schmittjoh/serializer/issues/180)
745 - serialized\_name does not work in yaml [\#118](https://github.com/schmittjoh/serializer/issues/11…
[all …]

12