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-7.x/
modules/ file/ file.module - Implements hook_file_download().
Archivo
- drupal-7.x/
includes/ file.inc, line 2505 - API for handling file uploads and server file management.
Código
function file_get_content_headers($file) {
$name = mime_header_encode($file->filename);
$type = mime_header_encode($file->filemime);
return array(
'Content-Type' => $type,
'Content-Length' => $file->filesize,
'Cache-Control' => 'private',
);
}