PHP exec_shell 使用 unrar.exe

发布于 2024-08-16 20:41:28 字数 346 浏览 6 评论 0原文

我正在运行以下 php 代码;

$output = exec('"D:\TESTDIR\unrar.exe" e "D:\TESTDIR\Icons.rar" -ppassword');
echo $output;

这不起作用...我希望它将文件提取到同一目录中。如果我将 exec 的内容复制到命令行提示符中,它就可以正常工作,所以有点混乱。

尝试以下操作;

$output = exec('"D:\TESTDIR\unrar.exe"');
echo $output;

返回 unrar 帮助文件的最后一行(这是预期的)。

I'm running the following php code;

$output = exec('"D:\TESTDIR\unrar.exe" e "D:\TESTDIR\Icons.rar" -ppassword');
echo $output;

Which isn't working... I want it to extract the files into the same directory. If I copy the contents of the exec into a command line prompt it works just fine, so slightly confused.

Trying the following;

$output = exec('"D:\TESTDIR\unrar.exe"');
echo $output;

Returns the last line of the unrar help file (which is expected).

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

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

发布评论

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

评论(1

南风几经秋 2024-08-23 20:41:28

是否可以在命令中添加一个目标,以便您可以告诉 unrar 将解压后的文件放置在哪里?

也许 PHP 现在正在尝试将其解压到 php 文件所在的目录中。

Is it possible to add a destination to the command so you can tell unrar where to place the unpacked files?

Probably PHP now is trying to unpack it in the directory the php file is located.

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