Skip to content

Instantly share code, notes, and snippets.

@v1talii-dev
Created June 28, 2018 11:03
Show Gist options
  • Save v1talii-dev/a420d9166c98428d58337fedb9b76e3d to your computer and use it in GitHub Desktop.
Save v1talii-dev/a420d9166c98428d58337fedb9b76e3d to your computer and use it in GitHub Desktop.
D8: download binary file
<?php
/**
* Скачивание файла.
*/
function downloadBinaryFile(File $file = NULL) {
if (empty($file)) {
return NULL;
}
$fileUri = $file->getFileUri();
$headers = [
'Content-disposition' => 'attachment; filename="' . $file->getFilename() . '"',
];
return new BinaryFileResponse($fileUri, 200, $headers, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment