Ejemplo n.º 1
0
 /**
  * Set the character set used in this Header.
  * @param string $charset
  */
 public function setCharset($charset)
 {
     parent::setCharset($charset);
     if (isset($this->_paramEncoder)) {
         $this->_paramEncoder->charsetChanged($charset);
     }
 }
 /**
  * Set the character set used in this Header.
  *
  * @param string $charset
  */
 public function setCharset($charset)
 {
     $this->clearCachedValueIf($charset != $this->_charset);
     $this->_charset = $charset;
     if (isset($this->_encoder)) {
         $this->_encoder->charsetChanged($charset);
     }
 }