Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名 PHP 开发人员,但老实说,我的服务器管理知识有些欠缺。
我今天启动了一个脚本,该脚本花了很长时间才运行,而且因为它嵌入了对 的调用ignore_user_abort(),所以在浏览器中按“停止”显然是徒劳的。
ignore_user_abort()
在 FastCGI 设置中强制执行 15 分钟的时间限制,但这仍然很长,因为我真的不得不等待它结束才能继续其他任何事情。
有什么方法可以在任何给定时刻管理/杀死 FastCGI 正在执行的任何 PHP 脚本吗?
php进程是否出现在taskmanager中?我想知道如果你在那里杀死它会发生什么。IIS 会启动另一个来处理下一个请求吗?