function _drupal_set_preferred_header_name

Sets the preferred name for the HTTP header.

Header names are case-insensitive, but for maximum compatibility they should follow "common form" (see RFC 2617, section 4.2).

3 calls to _drupal_set_preferred_header_name()
drupal_add_http_header in drupal/includes/bootstrap.inc
Sets an HTTP response header for the current page.
drupal_page_set_cache in drupal/includes/common.inc
Stores the current page in the cache.
drupal_send_headers in drupal/includes/bootstrap.inc
Sends the HTTP response headers that were previously set, adding defaults.

File

drupal/includes/bootstrap.inc, line 1447
Functions that need to be loaded on every Drupal request.

Code

function _drupal_set_preferred_header_name($name = NULL) {
  static $header_names = array();
  if (!isset($name)) {
    return $header_names;
  }
  $header_names[strtolower($name)] = $name;
}