我正在尝试从rar存档中删除文件。
如果运行/usr/bin/rar d rar_file.rar del.txt
,则此命令将从rar_file.rar删除文件del.txt
我想使用exec()在php中运行它,但它不起作用。
<?php
$file = realpath("temp/temp.rar");
chmod($file, 0777); //make sure I can handle the file
if(file_exists($file)){ //Make sure that the file exists
$rar = escapeshellarg($file);
echo "/usr/bin/rar d $rar teste.txt"; //Lets see the command
exec("/usr/bin/rar d $rar teste.txt", $r);
}
echo "\n";
print_r($r);
?>
这是我的输出:
/usr/bin/rar d '/var/www/temp/temp.rar' teste.txt
Array
(
[0] =>
[1] => RAR 3.90 beta 2 Copyright (c) 1993-2009 Alexander Roshal 3 Jun 2009
[2] => Shareware version Type RAR -? for help
)
未删除rar中的teste.txt文件。
但是,我复制了命令/usr/bin/rar d '/var/www/temp/temp.rar' teste.txt
并在终端中执行。
这是我的输出:
stive@stive-laptop:~$ /usr/bin/rar d '/var/www//temp/temp.rar' teste.txt
RAR 3.90 beta 2 Copyright (c) 1993-2009 Alexander Roshal 3 Jun 2009
Shareware version Type RAR -? for help
Deleting from /var/www/temp/temp.rar
Deleting teste.txt
Done
完美的工作,但在php exec没有。 我不认为它的文件权限导致用户www-data创建了rar文件(我之前创建过),并且我将权限设置为777而没有任何问题。
我正在使用linux,当然。
我做错了什么? 谢谢!
答案 0 :(得分:1)
解决方案:
使用exec()执行某些操作时,由于某种原因,exec()在脚本完成之前停止...这附加了许多我已经完成的脚本。
因此,马里奥的解决方案帮助我,在命令中添加2>&1
,exec()仅在脚本完成时停止。