7zip命令从命令行执行,但不在php脚本中执行

时间:2017-05-30 16:57:56

标签: php command-line command 7zip

我正在尝试编写一个自动解压缩7zip档案的脚本。我能够从命令提示符下运行命令,但在php脚本中运行时它不起作用。

以下是代码方面的内容:

$filefolder = "F:/dev/";
$filename = "archive.7z";
$filepath = $filefolder . $filename;

$unzip = "cmd /c 7z x " . $filePath . " -o" . $fileFolder . " -spf";
print_r($unzip . "<br>"); //checking to make sure the command is formed correctly
exec($unzip, $outcome, $rtnStatus);
print_r($outcome);
print_r($rtnStatus);

$ outcome和$ rtnStatus返回以下内容:

Array ( ) 
1

我在这里缺少什么?

0 个答案:

没有答案