如题,为什么用迅雷下载的时候是个空的。php文件,我怎么能够屏蔽掉迅雷,只用IE浏览器下载就可以了
        $title = $lottName.'.txt'; 
        header("Content-Type: application/force-download;charset='".CHARSET."'" );
        header("Content-Disposition:attachment;filename=".$title);
        header("Content-Transfer-Encoding: binary"); 
        $str = str_replace('<br/>', "\r\n", $str);
        $str = str_replace('&#160;', " ", $str); 
        echo $str;