كود: تحديد الكل
function download_document($filename, $mimetype = 'application/octet-stream')
{
if(!file_exists($filename) || !is_readable($filename)) return false;
$base = basename($filename);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Disposition: attachment; filename=$base");
header("Content-Length: " . filesize($filename));
header("Content-Type: $mimetype");
readfile($filename);
exit();
}
مرر لها مسار الملف , ونوع المايم (اختياري )
الداله هنا:
viewtopic.php?t=3606
مفيده لتحديد نوع المايم تايب