本帖最后由 abcfyk 于 2012-06-04 02:29:00 编辑

解决方案 »

  1.   


    Example #1 Forcing a download using readfile()<?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');
        header('Pragma: public');
        header('Content-Length: ' . filesize($file));
        ob_clean();
        flush();
        readfile($file);
        exit;
    }
    ?>