CIII. NSAPI-specific Functions
Úvod
These functions are only available when running PHP as a NSAPI module in Netscape/iPlanet/Sun webservers.
Instalace
For PHP installation on Netscape/iPlanet/Sun webservers see the NSAPI section (UNIX, Windows) in the installation chapter.
Konfigurace běhu
The behaviour of the NSAPI PHP module is affected by settings in php.ini. Configuration settings from php.ini may be overridden by additional parameters to the php4_execute call in obj.conf
Tabulka 198. NSAPI configuration options
| Name | Default | Changeable | Changelog |
|---|---|---|---|
| nsapi.read_timeout | "60" | PHP_INI_ALL | Available since PHP 4.3.3. |
Pro další detaily a definice konstant PHP_INI_*, viz dokumentace k ini_set().
Zde je stručný popis konfiguračních direktiv.
- nsapi.read_timeout integer
Sets the time in seconds the plugin is waiting for POST data from the client.
Typy prostředků
Toto rozšíření nemá definován žádný typ prostředku (resource).
Předdefinované konstanty
Toto rozšíření nemá definovány žádné konstanty.
Viz také
NSAPI implements a subset of the functions from the Apache module for maximum compatibility.
Tabulka 199. Apache functions implemented by NSAPI
| Apache function (only as alias) | NSAPI function | Description |
|---|---|---|
| apache_request_headers() | nsapi_request_headers() | Fetch all HTTP request headers |
| apache_response_headers() | nsapi_response_headers() | Fetch all HTTP response headers |
| getallheaders() | nsapi_request_headers() | Fetch all HTTP request headers |
| virtual() | nsapi_virtual() | Make NSAPI sub-request |
Obsah
- nsapi_request_headers — Fetch all HTTP request headers
- nsapi_response_headers — Fetch all HTTP response headers
- nsapi_virtual — Perform an NSAPI sub-request
NSAPI-specific Functions
