download -- Force le téléchargement d'un fichier.
Syntaxe
void download ( string filename )
Source
<?php
function download($filename) {
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filename) );
header('Accept-Ranges: bytes');
header('Content-Length: '.filesize($filename) );
readfile($filename);
}
?>