限时免费试用:欢迎注册 api.bigmodel.org ,快速体验大模型 API 接入服务。

PHP基础

php文件下载

html 1.jpg 2.jpg 3.jpg 1.png php

作者
王明昌
发布时间
html 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
友善分享您的看法。
反馈邮箱