PHP  
downloads | documentation | faq | getting help | | php.net sites | links 
search for in the  
previousFunktiotapache_child_terminatenext
Last updated: Tue, 28 May 2002
view this page in Printer friendly version | English | Brazilian Portuguese | Czech | Dutch | French | German | Hungarian | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Turkish

I. Apache-specific Functions

These functions are only available when running PHP as an Apache module.

Sis�llys
apache_child_terminate -- Terminate apache process after this request
apache_lookup_uri --  Perform a partial request for the specified URI and return all info about it
apache_note -- Get and set apache request notes
apache_setenv -- Set an Apache subprocess_env variable
ascii2ebcdic -- Translate string from ASCII to EBCDIC
ebcdic2ascii -- Translate string from EBCDIC to ASCII
getallheaders -- Fetch all HTTP request headers
virtual -- Perform an Apache sub-request
User Contributed Notes
Apache-specific Functions
add a note about notes

25-Mar-2000 09:12

Many of the environment variables can be found here:


28-Jul-2000 01:22

Quickly view all POST variables :

  <?php print_r($HTTP_POST_VARS); ?>


02-Apr-2001 04:26

An easier way to debug user-submitted data is with the print_r and var_dump
functions (check their manual entries to ensure your version of PHP
support them).

To find all available HTTP variables use:

print_r($HTTP_*_VARS);

For variables submitted via post use only:

print_r($HTTP_POST_VARS);

And for GET:

print_r($HTTP_POST_VARS);

And fun with $GLOBALS:

print_r($GLOBALS);


Note that data is immediately printed to the browser unless buffering is
used.


10-Jan-2002 09:40

If you are trying to find a Handler to use with apache's mod_mime functions
(e.g. SetHandler).  Use the MIME type associated with php.

e.g. SetHandler application/x-httpd-php

add a note about notes
previousFunktiotapache_child_terminatenext
Last updated: Tue, 28 May 2002
show source | credits | stats | mirror sites:  
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Thu Jul 4 12:06:15 2002 CEST