Definition

drupal_get_headers()
drupal-5/includes/common.inc, line 149

Description

Get the HTTP response headers for the current page.

Code

<?php
function drupal_get_headers() {
  return drupal_set_header();
}
?>