Created
November 20, 2013 09:32
-
-
Save betawax/7560334 to your computer and use it in GitHub Desktop.
Laravel file download
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$response = Response::make(file_get_contents($path)); | |
$response->header('Content-Type', 'application/octet-stream'); | |
$response->header('Content-Transfer-Encoding', 'binary'); | |
$response->header('Content-Disposition', 'attachment; filename='.basename($path)); | |
$response->header('Content-Length', filesize($path)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PLEASE, I NEED HELP ON HOW TO INSTALL AND USE LARAVEL PHP FRAMEWORK. I TRIED USING IT BUT IT WASN'T WORKING PROPERLY. THANK YOU IN ADVANCE.