Swift_Mime_Headers_UnstructuredHeader::setValue PHP Method

setValue() public method

Set the (unencoded) value of this header.
public setValue ( string $value )
$value string
    public function setValue($value)
    {
        $this->clearCachedValueIf($this->_value != $value);
        $this->_value = $value;
    }