123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- namespace Symfony\Component\BrowserKit;
- class Response
- {
- protected $content;
- protected $status;
- protected $headers;
-
- public function __construct(string $content = '', int $status = 200, array $headers = array())
- {
- $this->content = $content;
- $this->status = $status;
- $this->headers = $headers;
- }
-
- public function __toString()
- {
- $headers = '';
- foreach ($this->headers as $name => $value) {
- if (is_string($value)) {
- $headers .= $this->buildHeader($name, $value);
- } else {
- foreach ($value as $headerValue) {
- $headers .= $this->buildHeader($name, $headerValue);
- }
- }
- }
- return $headers."\n".$this->content;
- }
-
- protected function buildHeader($name, $value)
- {
- return sprintf("%s: %s\n", $name, $value);
- }
-
- public function getContent()
- {
- return $this->content;
- }
-
- public function getStatus()
- {
- return $this->status;
- }
-
- public function getHeaders()
- {
- return $this->headers;
- }
-
- public function getHeader($header, $first = true)
- {
- $normalizedHeader = str_replace('-', '_', strtolower($header));
- foreach ($this->headers as $key => $value) {
- if (str_replace('-', '_', strtolower($key)) === $normalizedHeader) {
- if ($first) {
- return is_array($value) ? (count($value) ? $value[0] : '') : $value;
- }
- return is_array($value) ? $value : array($value);
- }
- }
- return $first ? null : array();
- }
- }
|