| 5 file.inc | file_transfer($source, $headers) |
| 6 file.inc | file_transfer( |
| 7 file.inc | file_transfer($uri, $headers) |
| 8 file.inc | file_transfer($uri, $headers) |
Transfers a file to the client using HTTP.
Pipes a file through Drupal to the client.
Parameters
$uri: String specifying the file URI to transfer.
$headers: An array of HTTP headers to send along with file.
Related topics
2 calls to file_transfer()
File
- core/
includes/ file.inc, line 1997 - API for handling file uploads and server file management.
Code
function file_transfer($uri, $headers) {
if (ob_get_level()) {
ob_end_clean();
}
foreach ($headers as $name => $value) {
drupal_add_http_header($name, $value);
}
drupal_send_headers();
$scheme = file_uri_scheme($uri);
// Transfer file in 1024 byte chunks to save memory usage.
if ($scheme && file_stream_wrapper_valid_scheme($scheme) && $fd = fopen($uri, 'rb')) {
while (!feof($fd)) {
print fread($fd, 1024);
}
fclose($fd);
}
else {
drupal_not_found();
}
drupal_exit();
}
Login or register to post comments
Comments
Example
Sorry, this is bad place, move to d7 version..