我正在尝试编写一个自动解压缩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
我在这里缺少什么?