Pack a string.
public pack ( mixed $data, array $opts = [] ) : string | ||
$data | mixed | The data to pack. |
$opts | array | Additional options:
- compress: (mixed) If false, don't use compression. If true, uses default compress length (DEFAULT). If 0, always compress. All other integer values: compress only if data is greater than this string length. - drivers: (array) Only use these drivers to pack. By default, driver to use is auto-determined. - phpob: (boolean) If true, the data contains PHP serializable objects (i.e. objects that have a PHP-specific serialized representation). If false, the data does not contain any of these objects. If not present, will auto-determine existence of these objects. |
Результат | string | The packed string. |