PHP exec_shell 使用 unrar.exe
我正在运行以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否可以在命令中添加一个目标,以便您可以告诉 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.