From 7f7f9be504deb7832a5552feb7a330172579c608 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Wed, 2 Jan 2002 18:05:03 +0000 Subject: [PATCH] apache_child_terminate: clarify, see also exit git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@66720 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/apache.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/functions/apache.xml b/functions/apache.xml index 6fa062c621..029dd71f80 100644 --- a/functions/apache.xml +++ b/functions/apache.xml @@ -1,5 +1,5 @@ - + Apache-specific Functions Apache @@ -237,11 +237,14 @@ while (list ($header, $value) = each ($headers)) { - apache_child_terminate will terminate the apache - process executing the current PHP request. 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 operation system. + apache_child_terminate will terminate the Apache + process executing the current PHP request once it 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. + + + See also exit.