8.8.3 request
Todavia no hay una traducion de este texto. Por favor ayudanos y traducirla.. Mas info sobre traduciones
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());


























