首页 >

php用header()实现文件下载功能

后端开发|php教程php用header()实现文件下载功能
php下载
后端开发-php教程
php用header()实现文件下载功能代码:
圈猫游戏源码,ubuntu设置临时dns,tomcat默认目录下首页,爬虫馆在哪里,PHP怎么做影视播放,茂名seo学习lzw

function download($file_url,$new_name=''){

八字排盘 源码 博客,怎么调整vscode字体大小,ubuntu 字体推荐,tomcat数据压缩,爬虫处理办法,html改为php,有没有seo优化系统代理项目lzw
if(!isset($file_url)||trim($file_url)==''){
return '500';
}
if(!file_exists($file_url)){//检查文件是否存在
return '404';
}
$file_name=basename($file_url);
$file_type=explode('.',$file_url);
$file_type=$file_type[count($file_type)-1];
$file_name=trim($new_name=='')?$file_name:urlencode($new_name).'.'.$file_type;
//输入文件标签phpernote
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length: ".filesize($file_url));
header("Content-Disposition: attachment; filename=".$file_name);
//输出文件内容
@readfile($file_type);
}
微凉网页填表源码,ubuntu上安装360,tomcat8启动卡死,爬虫编码方式,php团队分工合作,传奇seolzw

php用header()实现文件下载功能
  • PHP利用Curl实现多线程抓取网页和下载文件
  • PHP利用Curl实现多线程抓取网页和下载文件 | PHP利用Curl实现多线程抓取网页和下载文件 ...

    php用header()实现文件下载功能
  • PHP下载图片函数
  • PHP下载图片函数 | PHP下载图片函数 ...

    php用header()实现文件下载功能
  • PHP高效快速下载文件办法
  • PHP高效快速下载文件办法 | PHP高效快速下载文件办法 ...