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.
我正在使用带有 prefork 模块的 Apache 2.2。
我有一个消耗大量内存的 PHP 脚本。在此脚本完成后,我的 apache 进程仍在消耗大量内存。
是否有可能从 PHP 脚本杀死正在服务当前 PHP 脚本的 Apache 进程?
apache_child_terminate()函数仅适用于 Apache 1。
apache_child_terminate()
您可以通过 posix 扩展来终止脚本。(应该默认启用)
posix_kill(posix_getpid(), 9); // or SIGKILL if you have pcntl also