PHP Function List
request.php doesn't exist. Closest matches:
- yaf_request_http
- httprequest
- httprequestpool
- http_request
- require
- yaf_request_simple
- reset
- nsapi_request_headers
- apache_request_headers
- preg_quote
- radius_send_request
- http_request_method_name
- http_get_request_headers
- yaf_request_abstract
- cubrid_close_request
- http_match_request_header
- radius_auth_open
- splheap
- radius_create_request
- xmlrpc_decode_request
Site Search Results
-
If you want to evaluate $_GET and $_POST variables by a single token without including $_COOKIE in the mix, use $_SERVER['REQUEST_METHOD'] to identify the method used and set up a switch block accordingly, e.g: <?php
-
import_request_variables - Manualimport_request_variables() is gone from PHP since version 5.4.0. A simple plug-in replacement it extract(). For example: import_request_variables('gp', 'v_'); Can be replaced with: extract($_REQUEST, EXTR_PREFIX_ALL|EXTR_REFS, 'v');
-
Set to a non-empty value if the script was queried through the HTTPS protocol. Note that when using ISAPI with IIS, the value will be off if the request was not made through the HTTPS protocol. Does the same for IIS7 running PHP as a Fast-CGI application.
-
xmlrpc_decode_request - Manual<?php $method = null; $params = xmlrpc_decode_request ('<xml rpc request>', & $method); ?> What you will get back are the params stored in $params, and $method will have the method being requested.
-
PHP script is terminated after sending headers (it means after producing any output without output buffering) if the request method was HEAD. 'REQUEST_TIME' The timestamp of the start of the request. Available since PHP 5.1.0.
-
When using square brackets, the get/post request is interpreted by PHP as an array. If you follow this example you'll understand why it works the way it does: <?php $organization = 92; $organization = 93; // The second asignment overwrites the value of the first
-
http_get_request_body - ManualIt seems that there is some weird behavior when using http_get_request_body() with fopen('php://input'). Specifically, reading the input with the fopen('php://input') routine before calling http_get_request_body() on a PUT HTTP request.
-
There is no need to do global $variable; to access it within functions or methods. Note: Variable availability Unlike all of the other superglobals, $GLOBALS has essentially always been available in PHP.
-
You should specify the first argument (int $method) using one of the Predefined HTTP request method constants specified here: http://www.php.net/manual/en/http.constants.php For example: <?php http_request (HTTP_METH_PUT, 'www.example.com');
-
import_ request_ variables intval is_ array is_ bool is_ callable is_ double is_ float is_ int ... files, all the declared classes, all the declared constants, all your PHP settings, all your php.ini values (if it is readable), all the loaded extensions, all the HTTP request ...

Other forms of search
To search the string "request.php" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
