apache_child_terminate

(PHP 4 >= 4.0.5, PHP 5)

apache_child_terminateTerminate apache process after this request

Description

bool apache_child_terminate ( void )

apache_child_terminate() will register the Apache process executing the current PHP request for termination once execution of PHP code is completed. It may be used to terminate a process after a script with high memory consumption has been run as memory will usually only be freed internally but not given back to the operating system.

Return Values

Returns TRUE if PHP is running as an Apache 1 module, the Apache version is non-multithreaded, and the child_terminate PHP directive is enabled (disabled by default). If these conditions are not met, FALSE is returned and an error of level E_WARNING is generated.

Changelog

Version Description
5.4.0 This function became available under FastCGI. Previously, it was supported only when PHP was installed as an Apache module.

Notes

Note: This function is not implemented on Windows platforms.

See Also

  • exit() - Output a message and terminate the current script

Коментарии

this code will add apache_child_terminate() function if it is not already present.

if (!function_exists("apache_child_terminate")){
function apache_child_terminate(){
register_shutdown_function("killonexit");
}

function killonexit(){
@exec("kill ".getmypid());
}
}
2007-12-06 10:43:11
http://php5.kiev.ua/manual/ru/function.apache-child-terminate.html
In response to sam at liddicott dot com:

it isin't so simple! You should never kill an apache process because it is automatically freed when apache need!

And, if you use apache worker or thread based mpm you risk to kill the entire process!

result: DO NOT USE THIS FUNCTION!
2007-12-29 05:18:32
http://php5.kiev.ua/manual/ru/function.apache-child-terminate.html
Apache child processes are greedy. If they get bloated by a PHP application that requires a lot of memory, they stay that way. The memory is never given back to the OS until that child dies.

You could use MaxRequestsPerChild in Apache to kill all child processes automatically after a certain number of connections. Or you can use apache_child_terminate to kill the child after your memory intensive functions.

Note: apache_child_terminate is not available in Apache 2.0 handler.
2008-01-29 18:29:33
http://php5.kiev.ua/manual/ru/function.apache-child-terminate.html
Автор:
I found out a solution for Apache 2. However this works only without threads and only on POSIX compatible OS systems (e.g. Linux, OpenSolaris...).

<?php

// Terminate Apache 2 child process after request has been
// done by sending a SIGWINCH POSIX signal (28).
function kill_on_exit() {
 
posix_killgetmypid(), 28 );
}

register_shutdown_function'kill_on_exit' );

?>
2010-08-11 05:39:06
http://php5.kiev.ua/manual/ru/function.apache-child-terminate.html
On FastCGI SAPIs this doesn't kill the process, it just makes the fastcgi handler fully recycle PHP at the end of the script rather than just recycling the request state. This includes php-cgi.
2022-12-23 02:02:46
http://php5.kiev.ua/manual/ru/function.apache-child-terminate.html

    Поддержать сайт на родительском проекте КГБ