You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin 2 vuotta sitten
..
Serializer checkin 2 vuotta sitten
Test/Unit checkin 2 vuotta sitten
JsonConverter.php checkin 2 vuotta sitten
JsonValidator.php checkin 2 vuotta sitten
README.md checkin 2 vuotta sitten
SerializerInterface.php checkin 2 vuotta sitten

README.md

Serialize

Serialize library provides interface SerializerInterface and multiple implementations:

  • Json - default implementation. Uses PHP native json_encode/json_decode functions;
  • JsonHexTag - default implementation. Uses PHP native json_encode/json_decode functions with JSON_HEX_TAG option enabled;
  • Serialize - less secure than Json, but gives higher performance on big arrays. Uses PHP native serialize/unserialize functions, does not unserialize objects on PHP 7.

Using Serialize implementation directly is discouraged, always use SerializerInterface, using Serialize implementation may lead to security vulnerabilities.