org\Crypt::packing PHP Method

packing() protected static method

数据打包(数据如何序列化) serialize or json_encode
protected static packing ( mixed $value ) : string
$value mixed 待加密的数据
return string 返回序列化后的数据
    protected static function packing($value)
    {
        return serialize($value);
    }