是否可以使用 php 打开和编辑 zip 文件内的文件?
我正在开发一个 WordPress 主题,需要一些配置才能正常工作。
当我说配置时,我的意思是 config.php 需要稍微编辑一下(设置一些变量值)。
现在我想知道是否可以进入 zip 文件,制作完整的临时副本(对于特定用户。也许使用会话 ID?)并编辑副本中的 config.php 文件以设置一些变量值。然后关闭临时 zip 文件并为用户回显该文件的链接,以供下载。
将设置的变量值将来自我网站上的表单,用户将在其中下载主题。
这只是我的一厢情愿,还是我还有机会?
谢谢!
I'm working on a WordPress theme which needs abit of configuration to be working properly.
When i say configuration, i mean config.php needs to be edited slightly (setting some variables value).
Now i was wondering if it is possible to be able to go into a zip file, make a complete temporary duplicate (for a specific user. Maybe using session ID's?) AND edit the config.php file in the duplicate to set some variables value. Then close the temporary zip file and echo a link out to the file for the user, ready for download.
The variables value that will be set will be from a form on my site where users will download the theme.
Is this just wishful thinking, or do I have a chance?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以提取文件,更改它,然后将其重新添加回存档(假设您有
ZipArchive
类已安装)。You can extract the file, change it, and then re-add it back to the archive (assuming that you have the
ZipArchive
class installed).使用 ZipArchive 类完全可以做到这一点。您可以用它打开、创建、扩展和保存 Zip 档案。
This is entirely possible using the ZipArchive class. You open, create, expand and save Zip archives with it.
当然有可能。
然而,您需要编写一些 php 代码来完成您想要的操作。
在 php.net 站点上,您可以在这里找到 zip 函数的文档 http://php。 net/manual/en/book.zip.php
我不会为您编写任何代码,但您需要取消的步骤如下:
sure it's possible.
You will however need to write some php code which does what you want.
on the php.net site you can find documentation for the zip functions here http://php.net/manual/en/book.zip.php
Im not going to write any code for you, but the steps you need to undego is the following: