如题,希望下载开始后,过程不需要手动操作比如下载http://dl.dropbox.com/u/2707242/shuisuo.wma各位高手帮帮忙啊

解决方案 »

  1.   

    <?php
    $filename = "theDownloadedFileIsCalledThis.mp3";
    $myFile = "/absolute/path/to/my/file.mp3";$mm_type="application/octet-stream";header("Cache-Control: public, must-revalidate");
    header("Content-Type: " . $mm_type);
    header("Content-Length: " .(string)(filesize($myFile)) );
    header('Content-Disposition: attachment; filename="'.$filename.'"');
    header("Content-Transfer-Encoding: binary\n");readfile($myFile);?>