h4kuna/serialize-polyfill

Provide methods for serialization and use igbinary if is available.

v0.2.3 2024-07-27 01:09 UTC

This package is auto-updated.

Last update: 2024-07-27 01:10:28 UTC


README

Downloads this Month Latest stable

In your project are available two new methods.

  • h4kuna\Serialize\Serialize::encode()
  • h4kuna\Serialize\Serialize::decode()

If you enable igbinary extension, then automatic use Driver\IgBinary. Or you can define own implmentation by Driver interface.

Compatibility

You are using php serialize and you want to use igbinary. You can enable igbinaty on fly and old serialized data will be decoded by old php serialize.

Support compatibility, if you have serialized data by php serialize, then you can decode by IgBinary::decode() and vice versa.

Enable custom driver

Register you driver after autoload. By default, you can skip this step.

require __DIR__ . '/vendor/autoload.php';
\h4kuna\Serialize\Serialize::setUp(Php::class);

Enable igbinary

  1. Install igbinary extension

Works!

Disable igbinary

  1. set Php driver after vendor/autoload.php
require __DIR__ . '/vendor/autoload.php';
\h4kuna\Serialize\Serialize::setUp(Php::class);
  1. wait if your all data will be decoded
  2. uninstall igbinary extension