h4kuna/serialize-polyfill

Provide methods for serialization and use igbinary if is available.

v0.2.2 2023-08-10 09:51 UTC

This package is auto-updated.

Last update: 2024-04-10 11:10:33 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 igbinary

  1. Install igbinary extension

Works!

Disable igbinary

  1. set constant as first things define('SERIALIZATION_FORCE_DISABLE', true); before vendor/autoload.php
  2. wait if your all data will be decoded
  3. uninstall igbinary extension
  4. remove constant SERIALIZATION_FORCE_DISABLE