shell_exec 不在后台运行,还有其他解决方案吗?
我在 CentOS 上的 apache 中使用 php。 我需要为用户提供服务,他们可以通过点击删除大文件。 尝试使用 shell_exec。 但它不在后台运行。 它运行并让用户等待。
我的命令:
$D_command="rm -rf 视频/'$Mdelete'";
shell_exec($D_command);
谢谢!
i'm using php in apache on CentOS.
i'm need to serve users, that they can delete big files by click.
trying to use shell_exec.
but its not run in the background.
it runs and make the user wait.
my command :
$D_command="rm -rf videos/'$Mdelete'";
shell_exec($D_command);
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
屁股 &在命令的末尾。
ass & at the end of the command.
http://php.net/manual/en/function.shell-exec.php
http://php.net/manual/en/function.shell-exec.php
尝试
使用
exec
运行。 & 符号表示运行到后台Try running
using
exec
. The ampersand indicates to run to the background试试这个:
Try this:
我知道这是一个相当老的问题,但我也遇到了同样的问题,这是在尝试使用
exec
、shell_exec
、process_open 失败后唯一可行的解决方案:
I know this is quite an old question, but I had the same issue, and this was the only working solution after trying and failing with
exec
,shell_exec
,process_open
: