限时免费试用:欢迎注册 api.bigmodel.org ,快速体验大模型 API 接入服务。
当前位置:首页 >开发者 >PHP笔记 >PHP基础

php文件下载

分类:PHP基础时间:2017-11-28浏览:3950
html
1.jpg
2.jpg
3.jpg
1.png

php
'image/jpeg',
    'jpeg' => 'image/jpeg',
    'png' => 'image/png',
    'gif' => 'image/gif',
    'txt' => 'text/plain',
    'html' => 'text/html',
    'php' => 'text/plain',
    'zip' => 'application/zip',
);
//下载设定
header('Content-Type:'.$type[$ext]);
//文件名
header('Content-Disposition: attachment;filename="'.$name.'"');
header('Content-Cength:'.filesize('./img/'.$name));
//下载资源位置
readfile('./img'.$name);

本站文章如未注明出处均为原创,转载请注明出处,如有侵权请邮件联系站长。
0/500
Share your thoughts respectfully.