fastcgi_finish_request

(PHP 5 >= 5.3.3, PHP 7) Flushes all response data to the client boolean fastcgi_finish_request ( void ) This function flushes all response data to the client and finishes the request. This allows for time consuming tasks to be performed without leaving the connection to the client open. Returns: Returns TRUE on success or FALSE on failure.

virtual

(PHP 4, PHP 5, PHP 7) Perform an Apache sub-request bool virtual ( string $filename ) virtual() is an Apache-specific function which is similar to <!--#include virtual...--> in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. At the minimum

getallheaders

(PHP 4, PHP 5, PHP 7) Fetch all HTTP request headers array getallheaders ( void ) Fetches all HTTP headers from the current request. This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works. Returns: An associative array of all the HTTP headers in the current request, or FALSE on failure.

apache_setenv

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set an Apache subprocess_env variable bool apache_setenv ( string $variable, string $value [, bool $walk_to_top = false ] ) apache_setenv() sets the value of the Apache environment variable specified by variable. Note: When setting an Apache environment variable, the corresponding $_SERVER variable is not changed. Parameters: variable

apache_response_headers

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch all HTTP response headers array apache_response_headers ( void ) Fetch all HTTP response headers. Returns: An array of all Apache response headers on success or FALSE on failure. Changelog: 5.5.7 This function became available in the CLI server. 5.4.0 This function became availabl

apache_reset_timeout

(PHP 5 >= 5.1.0, PHP 7) Reset the Apache write timer bool apache_reset_timeout ( void ) apache_reset_timeout() resets the Apache write timer, which defaults to 300 seconds. With set_time_limit(0); ignore_user_abort(true) and periodic apache_reset_timeout() calls, Apache can theoretically run forever. This function requires Apache 1. Returns: Returns TRUE on success or FALSE on failure.

apache_request_headers

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch all HTTP request headers array apache_request_headers ( void ) Fetches all HTTP request headers from the current request. Returns: An associative array of all the HTTP headers in the current request, or FALSE on failure. Changelog: 5.5.7 This function became available in the CLI server.

apache_note

(PHP 4, PHP 5, PHP 7) Get and set apache request notes string apache_note ( string $note_name [, string $note_value = "" ] ) This function is a wrapper for Apache's table_get and table_set. It edits the table of notes that exists during a request. The table's purpose is to allow Apache modules to communicate. The main use for apache_note() is to pass information from one module to another within the same request.

apache_lookup_uri

(PHP 4, PHP 5, PHP 7) Perform a partial request for the specified URI and return all info about it object apache_lookup_uri ( string $filename ) This performs a partial request for a URI. It goes just far enough to obtain all the important information about the given resource. This function is supported when PHP is installed as an Apache module or by the NSAPI server module in Netscape/iPlanet/SunONE webservers.

apache_getenv

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Get an Apache subprocess_env variable string apache_getenv ( string $variable [, bool $walk_to_top = false ] ) Retrieve an Apache environment variable specified by variable. This function requires Apache 2 otherwise it's undefined. Parameters: variable The Apache environment variable walk_to_top Whet