Neos\Flow\Http\AbstractMessage::setHeader PHP Метод

setHeader() публичный Метод

DateTime objects will be converted to a string representation internally but will be returned as DateTime objects on calling getHeader(). Please note that dates are normalized to GMT internally, so that getHeader() will return the same point in time, but not necessarily in the same timezone, if it was not GMT previously. GMT is used synonymously with UTC as per RFC 2616 3.3.1.
public setHeader ( string $name, array | string | DateTime $values, boolean $replaceExistingHeader = true ) : self
$name string Name of the header, for example "Location", "Content-Description" etc.
$values array | string | DateTime An array of values or a single value for the specified header field
$replaceExistingHeader boolean If a header with the same name should be replaced. Default is TRUE.
Результат self This message, for method chaining
    public function setHeader($name, $values, $replaceExistingHeader = true)
    {
        switch ($name) {
            case 'Content-Type':
                if (is_array($values)) {
                    if (count($values) !== 1) {
                        throw new \InvalidArgumentException('The "Content-Type" header must be unique and thus only one field value may be specified.', 1454949291);
                    }
                    $values = (string) $values[0];
                }
                if (stripos($values, 'charset') === false && stripos($values, 'text/') === 0) {
                    $values .= '; charset=' . $this->charset;
                }
                break;
        }
        $this->headers->set($name, $values, $replaceExistingHeader);
        return $this;
    }