(Windows 7) 如何使用 PHP 在 xampp 中提取 *.7z 档案?
(使用 XAMPP 1.7.7 和 PHP 5.3.8)
我知道如何使用 PHP/p7zip 提取 *.7z 文件,但我需要使用 xampp 进行本地测试(我使用的是 Windows 7 64 位),但我陷入了困境。我尝试使用 exec():
<?php exec('7z e test.7z'); ?>
但它不起作用!
我也尝试过这个:
<?php exec('"C:\Program Files\7-Zip\7z.exe" e test.7z'); ?>
这自然也不起作用。
出于沮丧,我什至将 7z.exe 复制到 PHP 脚本目录,但我仍然无法让它工作(在这种情况下 7z.exe 抱怨它“找不到存档”,即使所有内容都位于相同的文件夹和存档确实确实存在!)
那么,我如何使用 PHP 和 提取 7z 存档? XAMPP?
提前致谢!
(Using XAMPP 1.7.7 with PHP 5.3.8)
I know how to extract *.7z files with PHP/p7zip, but I need to test locally using xampp (I'm using Windows 7 64 bits) and I'm stuck. I tried using exec():
<?php exec('7z e test.7z'); ?>
but it didn't work!
I also tried this:
<?php exec('"C:\Program Files\7-Zip\7z.exe" e test.7z'); ?>
Which naturally doesn't work either.
Out of frustration, I even copied 7z.exe to the PHP script directory but I'm still can't get it to work (in this case 7z.exe complain that it "cannot find archive", even though everything is located under the same folder and the archive does actually exist!)
So, how can can I extract 7z archives using PHP & XAMPP?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需提供存档的完整路径即可
just give the full path to the archive
您在执行上述命令时是否尝试提供 test.7z 的完整路径
did you try to provide full path to test.7z while executing the above command
精确的 $cCommand 内容:
注意双引号!
这对我有用。
格特
Exact $cCommand contents:
Note the double (double) quotes!!
This worked for me.
Gert