Thursday, November 21, 2013

Access Request Object data

How do you access CakeResponse object data in __construct() ?

 

/app/Controller/AppController.php (line 129)

object(CakeResponse) {

        [protected] _statusCodes => array(

               (int) 100 => 'Continue',

               (int) 101 => 'Switching Protocols',

               (int) 200 => 'OK',

               (int) 201 => 'Created',

               (int) 202 => 'Accepted',

               (int) 203 => 'Non-Authoritative Information',

               (int) 204 => 'No Content',

               (int) 205 => 'Reset Content',

               (int) 206 => 'Partial Content',

               (int) 300 => 'Multiple Choices',

               (int) 301 => 'Moved Permanently',

               (int) 302 => 'Found',

               (int) 303 => 'See Other',

               (int) 304 => 'Not Modified',

               (int) 305 => 'Use Proxy',

               (int) 307 => 'Temporary Redirect',

               (int) 400 => 'Bad Request',

               (int) 401 => 'Unauthorized',

               (int) 402 => 'Payment Required',

               (int) 403 => 'Forbidden',

               (int) 404 => 'Not Found',

               (int) 405 => 'Method Not Allowed',

               (int) 406 => 'Not Acceptable',

               (int) 407 => 'Proxy Authentication Required',

               (int) 408 => 'Request Time-out',

               (int) 409 => 'Conflict',

               (int) 410 => 'Gone',

               (int) 411 => 'Length Required',

               (int) 412 => 'Precondition Failed',

               (int) 413 => 'Request Entity Too Large',

               (int) 414 => 'Request-URI Too Large',

               (int) 415 => 'Unsupported Media Type',

               (int) 416 => 'Requested range not satisfiable',

               (int) 417 => 'Expectation Failed',

               (int) 500 => 'Internal Server Error',

               (int) 501 => 'Not Implemented',

               (int) 502 => 'Bad Gateway',

               (int) 503 => 'Service Unavailable',

               (int) 504 => 'Gateway Time-out',

               (int) 505 => 'Unsupported Version'

        )

Thanks,

Dave

No comments: