(Windows 7) 如何使用 PHP 在 xampp 中提取 *.7z 档案?

发布于 2025-01-06 08:30:01 字数 514 浏览 1 评论 0原文

(使用 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 技术交流群。

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

发布评论

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

评论(3

独自唱情﹋歌 2025-01-13 08:30:01

只需提供存档的完整路径即可

just give the full path to the archive

猫腻 2025-01-13 08:30:01

您在执行上述命令时是否尝试提供 test.7z 的完整路径

did you try to provide full path to test.7z while executing the above command

笑叹一世浮沉 2025-01-13 08:30:01
$cCommand =  '"'. '"' . "C:\\Program Files\\7-Zip\\7z.exe" . '"' . " l " .  '"' . "P:\Temp\PAB-SQL Import\Downloads\PAB200_FULL_EXPORT_20130902.zip" . '"' . '"' ;

精确的 $cCommand 内容:

""C:\Program Files\7-Zip\7z.exe" l "P:\Temp\PAB-SQL Import\Downloads\PAB200_FULL_EXPORT_20130902.zip""

exec($cCommand, $output, $nError_value);

注意双引号!

这对我有用。

格特

$cCommand =  '"'. '"' . "C:\\Program Files\\7-Zip\\7z.exe" . '"' . " l " .  '"' . "P:\Temp\PAB-SQL Import\Downloads\PAB200_FULL_EXPORT_20130902.zip" . '"' . '"' ;

Exact $cCommand contents:

""C:\Program Files\7-Zip\7z.exe" l "P:\Temp\PAB-SQL Import\Downloads\PAB200_FULL_EXPORT_20130902.zip""

exec($cCommand, $output, $nError_value);

Note the double (double) quotes!!

This worked for me.

Gert

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