download

简单的下载文件函数

jerry thinkphp
发送文件给浏览器,提供下载,支持个大浏览器及中文文件名。//下载文件 function download_file($file){     if(is_file($file)){         $length = filesize($file);         $type = ...
阅读全文