drupal_get_headers

5 common.inc drupal_get_headers()
6 common.inc drupal_get_headers()

Get the HTTP response headers for the current page.

1 call to drupal_get_headers()

File

includes/common.inc, line 162
Common functions that many Drupal modules will need to reference.

Code

function drupal_get_headers() {
  return drupal_set_header();
}

Comments

---

In Drupal 7, the equivalent function is drupal_get_http_header().

Login or register to post comments