8.8.3 request
There is no translation yet for this section. Please help out and translate this.. More information about translations
The base request method, which is called from all the wrappers (get, post, put, delete). Returns the results of the request.
string function request($request)
$request is a keyed array of various options. Here is the format and default settings:
var $request = array( 'method' => 'GET', 'uri' => array( 'scheme' => 'http', 'host' => null, 'port' => 80, 'user' => null, 'pass' => null, 'path' => null, 'query' => null, 'fragment' => null ), 'auth' => array( 'method' => 'Basic', 'user' => null, 'pass' => null ), 'version' => '1.1', 'body' => '', 'line' => null, 'header' => array( 'Connection' => 'close', 'User-Agent' => 'CakePHP' ), 'raw' => null, 'cookies' => array() );
var $request = array('method' => 'GET','uri' => array('scheme' => 'http','host' => null,'port' => 80,'user' => null,'pass' => null,'path' => null,'query' => null,'fragment' => null),'auth' => array('method' => 'Basic','user' => null,'pass' => null),'version' => '1.1','body' => '','line' => null,'header' => array('Connection' => 'close','User-Agent' => 'CakePHP'),'raw' => null,'cookies' => array());


























