Skip to content

Instantly share code, notes, and snippets.

View mitchellvanw's full-sized avatar

Mitchell van Wijngaarden mitchellvanw

View GitHub Profile
<?php
$stream = $fs->readStream($file);
// send the right headers
header("Content-Type: " . $fs->getMimetype($file));
header("Content-Length: " . $fs->getSize($file));
header("Content-disposition: attachment; filename=\"" . basename($file) . "\"");
// dump the attachement and stop the script