/plugin/authfacebook/lib/ |
D | FacebookApp.php | 102 * @param string $serialized 104 public function unserialize($serialized) argument 106 list($id, $secret) = explode('|', $serialized);
|
/plugin/openid/Auth/OpenID/ |
D | KVForm.php | 94 $serialized = ''; 111 $serialized .= "$key:$value\n"; 113 return $serialized;
|
/plugin/fedauth/Auth/OpenID/ |
D | KVForm.php | 89 $serialized = ''; 106 $serialized .= "$key:$value\n"; 108 return $serialized;
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/_fixture/ |
D | ClassThatImplementsSerializable.php | 9 public function unserialize($serialized) argument 11 foreach (unserialize($serialized) as $key => $value) {
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/ |
D | IteratorHandlerTest.php | 53 $serialized = $serializationHandler( 59 self::assertSame(self::DATA, $serialized); 70 $serialized,
|
/plugin/fckg/scripts/ |
D | refresh_save.php | 66 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; 67 $ents = unserialize(file_get_contents($serialized));
|
/plugin/ckgedit/action/entities/ |
D | ents_seri.php | 26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable 27 file_put_contents($serialized,serialize($entities));
|
/plugin/fckg/action/entities/ |
D | ents_seri.php | 26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable 27 file_put_contents($serialized,serialize($entities));
|
/plugin/ckgdoku/action/entities/ |
D | ents_seri.php | 26 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; variable 27 file_put_contents($serialized,serialize($entities));
|
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/GUI/ |
D | HTML.php | 204 $serialized = '(\w:\d+:(?:"[^"]+":\d+:)?\{.*\})'; 208 …if (preg_match('/^(.*)expected ' . $serialized . ', actual ' . $serialized . '$/sU', $exception, $…
|
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/ |
D | exclusion_strategies.rst | 7 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/findologicxmlexport/vendor/jms/serializer/tests/Serializer/ |
D | ContextTest.php | 182 $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);
|
D | JsonSerializationTest.php | 312 $serialized = $this->serialize($object); 313 self::assertEquals('{"a":"b","c":"d"}', $serialized); 314 self::assertEquals($object, $this->deserialize($serialized, ObjectWithInlineArray::class));
|
D | XmlSerializationTest.php | 375 $serialized = $this->serialize($object); 376 self::assertEquals($this->getContent('object_with_xml_namespaces'), $serialized);
|
/plugin/fckg/action/ |
D | save.php | 157 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; 158 $ents = unserialize(file_get_contents($serialized));
|
/plugin/rssticker/ |
D | lastRSS.php | 76 $serialized = serialize($result); 78 fwrite ($f, $serialized, strlen($serialized));
|
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/ |
D | annotations.rst | 13 | | with @Expose will be serialized/unserialized | 16 | | those marked with @Exclude will be serialized/unserialized | 22 not be serialized/unserialized. Works only in combination with NoneExclusionPolicy. 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 [all …]
|
D | xml_reference.rst | 24 serialized-name="foo" 60 serialized-name="foo" 79 serialized-name="foo"
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/ |
D | SerializerBuilderTest.php | 250 $serialized = $serializer->serialize($person, 'json'); 251 self::assertEquals('{"name":"mike","gender":"f"}', $serialized); 253 $object = $serializer->deserialize($serialized, PersonSecretWithVariables::class, 'json');
|
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/ |
D | Cache.SerializerPath.txt | 8 Absolute path with no trailing slash to store serialized definitions in.
|
/plugin/ckgdoku/action/ |
D | save.php | 309 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; 310 $ents = unserialize(file_get_contents($serialized));
|
/plugin/ckgedit/action/ |
D | save.php | 403 $serialized = FCK_ACTION_SUBDIR . 'ent.ser'; 404 $ents = unserialize(file_get_contents($serialized));
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
D | search-operations.asciidoc | 103 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/ |
D | UPGRADING.md | 12 - Removed `AdvancedNamingStrategyInterface`, the serialized name is now compiled and can not be cha…
|
D | CHANGELOG.md | 233 - 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… 450 - Allow to typehint for the type \(array/hash\) of the root item to be serialized [\#728](https://g… 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… 594 - Object handler callback returns array, but serialized object = null [\#594](https://github.com/sc… 696 - Class name not reflecting in serialized json [\#662](https://github.com/schmittjoh/serializer/iss… [all …]
|