drupal_get_html_head()Retrieve output to be displayed in the HEAD tag of the HTML page.
includes/common.inc, line 335
<?php
function drupal_get_html_head() {
$elements = drupal_add_html_head();
drupal_alter('html_head', $elements);
return drupal_render($elements);
}
?>