PHP 解压 zip 并将内容插入数据库
我需要能够提取 zip 文件,并将 zip 文件中的文件名插入数据库。
我四处搜索,发现了多个脚本来解压 zip 文件,但似乎我无法获取 zip 文件中文件的单个文件名。
I need to be able to extract a zip file, and insert the names of the files in the zip file into a database.
I've searched around, and found multiple scripts to unpack a zip file, but it seems that I'm not able to get the individual filenames of the files in the zip file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能建议使用两个系统调用:
1)解压缩到 tmp 文件夹
2)从该文件夹读取文件
(更新的完整工作脚本):
先决条件
0)如果你在unix/linux/mac下可以工作(在windows下不能工作)
1)创建test.php并粘贴上面的代码
2) 确保在 test.php 所在的同一文件夹中,是文件夹 tmp
3)确保apache用户可以写入该文件夹(例如chmod 777 tmp)
4) 确保您的 php 允许文件上传
5) 确保您的服务器有“unzip”命令行工具
问候。
I would probably suggest to use two system calls:
1) unzip to tmp folder
2) read files from that folder
(updated full working script):
Pre-requisites
0) will work if you are under unix/linux/mac (won't work under windows)
1) create test.php and paste in it the code above
2) make sure in the same folder where test.php, is folder tmp
3) make sure apache user can write that folder (e.g. chmod 777 tmp)
4) make sure your php allows file uploads
5) make sure your server has "unzip" command line tool
Regards.