如何使用php生成受密码保护的csv文件

发布于 2024-10-03 03:41:26 字数 96 浏览 1 评论 0原文

我必须通过 php 脚本生成受密码保护的 csv 文件。通过 php 脚本生成 csv 文件很容易,我已经做到了这一点,但我在使用密码保护该文件时遇到问题。请建议如何做到这一点。

I have to generate password protected csv file through php script. Generation of csv file through php script is easy and I have done this, but I am facing problem in making password protected this file. Please suggest how this can be done.

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

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

发布评论

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

评论(3

青柠芒果 2024-10-10 03:41:26

您不能简单地用密码保护 .csv 文件而不将其转换为其他格式(例如 .xls),因为它在任何文本编辑器中都是可见的。

但是,您可以使用 PHP 创建 .csv 文件,然后您也可以使用 PHP 将其放入带有密码的 zip 存档中。这是实现您想要的目标的一种方法。

You cannot simply password protect .csv file without converting it in another format such as .xls because it is visible with any text editor.

However, you can create the .csv file with PHP, after that you can put it into a zip archive with password also with PHP. That is one way to accomplish what you want.

耶耶耶 2024-10-10 03:41:26

这是不可能的。

与 Office 文档或 Zip 文件不同,CSV 是纯文本格式,没有任何安全规定。

This is not possible.

Unlike Office documents or Zip files, CSV is a pure text format with no security provisions whatsoever.

清风挽心 2024-10-10 03:41:26

如果您真的关心数据,您能做的最好的事情就是加密/解密您的 cvs 文件,但 csv 阅读器将无法读取您的 csv 文件,除非它被解密。

Best you can do is to encrypt/decrypt your cvs files if you really care about the data but again then csv readers won't be able to read your csv files unless its decrypted.

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