1 | <?php |
||
20 | class Response extends AbstractResponse |
||
21 | { |
||
22 | protected $rawData; |
||
23 | |||
24 | protected $headers; |
||
25 | |||
26 | protected $statusCode; |
||
27 | |||
28 | protected $reasonPhrase; |
||
29 | |||
30 | 2 | public function __construct(Request $request, $rawData, array $rawHeaders) |
|
36 | |||
37 | 2 | public function getRawData() |
|
41 | |||
42 | 2 | public function getHeader($name) |
|
48 | |||
49 | 2 | public function parseHeaders($headers) |
|
50 | { |
||
51 | 2 | foreach ($headers as $header) { |
|
52 | 2 | if (strncmp($header, 'HTTP/', 5) === 0) { |
|
53 | 2 | $parts = explode(' ', $header, 3); |
|
54 | 2 | $this->version = substr($parts[0], 5); |
|
|
|||
55 | 2 | $this->statusCode = $parts[1]; |
|
56 | 2 | $this->reasonPhrase = $parts[2]; |
|
57 | 2 | } elseif (($pos = strpos($header, ':')) !== false) { |
|
58 | 2 | $name = strtolower(trim(substr($header, 0, $pos))); |
|
59 | 2 | $value = trim(substr($header, $pos + 1)); |
|
60 | 2 | $result[$name][] = $value; |
|
61 | } else { |
||
62 | 2 | $result['raw'][] = $header; |
|
63 | } |
||
64 | } |
||
65 | |||
66 | 2 | return $result; |
|
67 | } |
||
68 | |||
69 | 2 | public function getStatusCode() |
|
73 | |||
74 | public function getReasonPhrase() |
||
78 | } |
||
79 |
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: