Swoole Serialize (Depreciation)

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

This class or function have been deprecated.

Swoole provides a fast and high performance serialization module.

Swoole\Serialize->pack ( string $data [, int $is_fast ] )

Alias: string swoole_serialize->pack(mixed $data, $is_fast = 0);

Serialize the data.

Parameter
  • $data the data to serialize

  • $is_fast if enable fast mode

Return

If the process of serialization succeeds, it returns the binary string as the result of serialization. Otherwise, it returns false.

mixed Swoole\Serialize->unpack ( string $data [, string $args ] )

Alias: mixed swoole_serialize->unpack($data)

Unserialize the data.

Parameter
  • $data the data to unserialize
Return

If the process of unserialization succeeds, it returns the unserialized data. Otherwise, it returns false.

Last updated on August 31, 2022