PHP Class Protocol\FCGI\Record\GetValues

The Web server can query specific variables within the application. The server will typically perform a query on application startup in order to to automate certain aspects of system configuration. The application responds by sending a record {FCGI_GET_VALUES_RESULT, 0, ...} with the values supplied. If the application doesn't understand a variable name that was included in the query, it omits that name from the response. FCGI_GET_VALUES is designed to allow an open-ended set of variables. The initial set provides information to help the server perform application and connection management: FCGI_MAX_CONNS: The maximum number of concurrent transport connections this application will accept, e.g. "1" or "10". FCGI_MAX_REQS: The maximum number of concurrent requests this application will accept, e.g. "1" or "50". FCGI_MPXS_CONNS: "0" if this application does not multiplex connections (i.e. handle concurrent requests over each connection), "1" otherwise.
Inheritance: extends Params
Show file Open project: lisachenko/protocol-fcgi Class Usage Examples

Public Methods

Method Description
__construct ( array $keys = [] ) Constructs a request

Method Details

__construct() public method

Constructs a request
public __construct ( array $keys = [] )
$keys array List of keys to receive