downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

apache_get_modules> <Funcții Apache
[edit] Last updated: Fri, 25 May 2012

view this page in

apache_child_terminate

(PHP 4 >= 4.0.5, PHP 5)

apache_child_terminateTermină (lichidează) procesul apache după această cerere

Descrierea

bool apache_child_terminate ( void )

apache_child_terminate() va înregistra procesul Apache, ce execută interpelarea dată PHP, pentru a fi terminat (lichidat) odată cu finalizarea executării codului PHP. Această funcție poate fi utilizată pentru a termina un proces după rularea unui script cu un consum de memorie substanțial, deoarece memoria de obicei este eliberată intern și nu este întoarsă sistemului de operare.

Valorile întoarse

Întoarce TRUE dacă PHP rulează în calitate de modul Apache 1, Apache nu rulează pe mai multe fire de execuție și directiva PHP child_terminate este activată (ea este dezactivată implicit). Dacă aceste condiții nu sunt satisfăcute, este întors FALSE și este generată o eroare de nivel E_WARNING.

Istoria schimbărilor

Versiunea Descriere
5.4.0 Această funcție a devenit disponibilă în FastCGI. Anterior ea era susținută doar când PHP era instalat ca modul Apache.

Note

Notă: Această funcție nu este implementată pe platformele Windows.

Vedeți de asemenea

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



apache_get_modules> <Funcții Apache
[edit] Last updated: Fri, 25 May 2012
 
add a note add a note User Contributed Notes apache_child_terminate
Stephan Ferraro 11-Aug-2010 02:39
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' );

?>
louis at ewens dot com 29-Jan-2008 04:29
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.
daniele_dll at yahoo dot it 29-Dec-2007 03:18
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!
admin at hostultra dot com 06-Dec-2007 08:43
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());
}
}

 
show source | credits | stats | sitemap | contact | advertising | mirror sites