apache_child_terminate

(PHP 4 >= 4.0.5, PHP 5, PHP 7, PHP 8)

apache_child_terminateInterrompe il processo apache dopo la presente richiesta

Descrizione

apache_child_terminate(): bool

apache_child_terminate() informa il processo Apache che sta eseguendo la richiesta PHP corrente di terminare quando l'esecuzione del codice PHP è stata completata. Può essere usata per interrompere un processo dopo che sia stato eseguito uno script con alta occupazione di memoria dal momento che la memoria viene normalmente liberata internamente ma non restituita al sistema operativo.

Valori restituiti

Restituisce true se PHP è eseguito come modulo Apache 1, la versione di Apache non è multithread, e la direttiva PHP child_terminate è attivata (è disattivata di default). Se queste condizioni non sono raggiunte, viene restituito false e viene generato un errore di livello E_WARNING.

Log delle modifiche

Versione Descrizione
5.4.0 Questa funzione diventa disponibile sotto FastCGI. Precedentemente, era supportata solo quando PHP era installato come modulo Apache.

Note

Nota: Questa funzione non è implementata sulle piattaforme Windows.

Vedere anche:

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

add a note

User Contributed Notes 5 notes

up
1
Stephan Ferraro
13 years ago
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_kill( getmypid(), 28 );
}

register_shutdown_function( 'kill_on_exit' );

?>
up
1
jasonlester at nope dot com
1 year ago
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.
up
0
louis at ewens dot com
16 years ago
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.
up
0
daniele_dll at yahoo dot it
16 years ago
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!
up
-2
admin at hostultra dot com
16 years ago
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());
}
}
To Top