PHP 和 JS 中的压缩和解压缩

发布于 2024-08-19 18:59:52 字数 377 浏览 3 评论 0原文

我想知道是否有人想出了类似的东西?

一种压缩文本的方法:

<?php
    $str = 'Hello world!';// the text here can be any characters long
    $key = compress($str);// should return a key 32characters long/ or a fixed number of characters
    $value = decompress($key);// should return "Hello World!"
?>

使用 MD5 是一种单向加密/压缩, 基本上我希望 MD5 这样的东西是可逆的。不一定是 MD5 本身。

I was wondering if someone has come up with something similar to this??

a way to compress a text:

<?php
    $str = 'Hello world!';// the text here can be any characters long
    $key = compress($str);// should return a key 32characters long/ or a fixed number of characters
    $value = decompress($key);// should return "Hello World!"
?>

Using MD5 is a one way encryption/compression,
basically I would like something like MD5 to be reversable. Not necessarly the MD5 it self.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

城歌 2024-08-26 18:59:52

md5 不是压缩算法:它是散列算法。

如果你想压缩/解压缩,在 PHP 中,你可以使用类似 gzcompressgzdeflate, bzcompress, ... 取决于您要使用的压缩算法以及服务器上可用的功能。

您可以查看手册的压缩和存档扩展部分,其中列出了您可能能够使用的不同扩展 - 前提是它们安装在您的服务器上。

md5 is not a compression algorithm : it's a hashing algorithm.

If you want to compress/decompress, in PHP, you can use something like gzcompress, gzdeflate, bzcompress, ... depending on the compression algorithm you want to use, and the functions available on your server.

You can take a look at the Compression and Archive Extensions section of the manual, which lists the different extensions you might be able to use -- provided they're installed on your server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文