★ wanayoo — archive 1999 http://fr.php.net/manual/fr/ref.apache.phpNouvelle recherche | Portail wanayoo
PHP  
downloads | documentation | faq | getting help | reporting bugs | php.net sites | links 
search for in the  
previousIndex des fonctionsapache_child_terminatenext
Last updated: Tue, 11 Jun 2002
view this page in Printer friendly version | English | Brazilian Portuguese | Czech | Dutch | Finnish | German | Hungarian | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Turkish

I. Apache

Table des matières
apache_child_terminate -- Terminate apache process after this request
apache_lookup_uri --  Effectue une requête partielle pour l'URI spécifiée et renvoie toutes les informations.
apache_note --  Affiche ou affecte le paramètre "apache request notes".
apache_setenv -- Set an Apache subprocess_env variable
ascii2ebcdic -- Transforme une chaîne ASCII en EBCDIC
ebcdic2ascii -- Transforme une chaîne EBCDIC en ASCII
getallheaders --  Récupère toutes les en-têtes des requêtes HTTP.
virtual -- Effectue une sous-requête Apache
User Contributed Notes
Apache
add a note about notes
jarl@diku.dk
25-Mar-2000 09:12

Many of the environment variables can be found here:
http://www.php.net/manual/language.variables.predefined.php

rick@e-possibility.com
28-Jul-2000 01:22

Quickly view all POST variables :

  <?php print_r($HTTP_POST_VARS); ?>

brian_d2000@spamclause.yahoo.com
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.

cjm2@earthling.net
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
previousIndex des fonctionsapache_child_terminatenext
Last updated: Tue, 11 Jun 2002
show source | credits | stats | mirror sites:  
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by: nexen.net
Last updated: Wed Jul 3 04:31:25 2002 CEST