下载文件时,其大小为0字节

时间:2015-05-17 20:20:42

标签: php file download

当我尝试下载文件时,它会下载但没有内容,即其大小为0字节。 我正在使用这段代码,我做错了什么?

$fullPath = "/home/yakar/www/files/gpx/".$file;

if (file_exists($fullPath)) {


    // setting headers
    header('Content-Description: File Transfer');
    header('Content-Type: '.$type);
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
} else {
    die('File does not exist');
}

0 个答案:

没有答案