The PHP manual gives good insight on how to achieve this with an example on the readfile
function's page:
<?php
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
This forces any file to be downloadable by setting the content-disposition and content-type headers. That's pretty much the way this sort of thing is usually done, file_get_contents
will allow you to do the same thing too.