php 下载保存文件保存到本地的两种实现方法

前端之家收集整理的这篇文章主要介绍了php 下载保存文件保存到本地的两种实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一种:

PHP;">

PHP;">

第二种:

PHP;">

PHP实现下载文件的两种方法分享下,有用到的朋友看看哦。

方法一:

PHP;"> header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filepath));
header('Content-Transfer-Encoding: binary');
header('Expires: 0′);
header('Cache-Control: must-revalidate,post-check=0,pre-check=0′);
header('Pragma: public');
header('Content-Length: ' . filesize($filepath));
readfile($file_path);
?>

了解PHP中header函数用法

方法二:

PHP;">
原文链接:https://www.f2er.com/php/25714.html

猜你在找的PHP相关文章