org\Crypt::unpacking PHP Method

unpacking() protected static method

数据解包(数据如何反序列化) unserialize or json_decode
protected static unpacking ( string $value ) : mixed
$value string 被序列化的数据
return mixed 返回被加密的数据
    protected static function unpacking($value)
    {
        return unserialize($value);
    }