扫码关注官方订阅号
ringa_lee
不需要Ajax 直接<a href='http://example.com/test.doc' download>下载</a>
<a href='http://example.com/test.doc' download>下载</a>
或者点击链接,php下载
$file = 'test.doc' ; if ( file_exists ( $file )) { header ( 'Content-Description: File Transfer' ); header ( 'Content-Type: application/octet-stream' ); header ( 'Content-Disposition: attachment; filename=' . basename ( $file )); header ( 'Content-Transfer-Encoding: binary' ); header ( 'Expires: 0' ); header ( 'Cache-Control: must-revalidate' ); header ( 'Pragma: public' ); header ( 'Content-Length: ' . filesize ( $file )); ob_clean (); flush (); readfile ( $file ); exit; }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
不需要Ajax 直接
<a href='http://example.com/test.doc' download>下载</a>或者点击链接,php下载