function file_get_content_headers

Examines a file object and returns appropriate content headers for download.

Parameters

$file: A file object.

Return value

An associative array of headers, as expected by file_transfer().

Related topics

1 call to file_get_content_headers()
file_file_download in drupal/modules/file/file.module
Implements hook_file_download().

File

drupal/includes/file.inc, line 2579
API for handling file uploads and server file management.

Code

function file_get_content_headers($file) {
  $type = mime_header_encode($file->filemime);
  return array(
    'Content-Type' => $type,
    'Content-Length' => $file->filesize,
    'Cache-Control' => 'private',
  );
}