Esempio n. 1
0
 /**
  * Sends the content-type header.
  *
  * @param string $content_type Content-type, must contain both primary/secondary.
  * @param string|null $charset Optional charset to send.
  * @return boolean True if sent, false/warning error if missing a part.
  */
 function http_send_content_type($content_type = 'application/x-octetstream', $charset = null)
 {
     return Util::sendContentType($content_type, $charset);
 }