入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

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

创建时间:2016-07-29 投稿人: 浏览次数:1843

第一种:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php function downfile() {  $filename=realpath("resume.html"); //文件名  $date=date("Ymd-H:i:m");  Header( "Content-type:  application/octet-stream ");  Header( "Accept-Ranges:  bytes "); Header( "Accept-Length: " .filesize($filename));  header( "Content-Disposition:  attachment;  filename= {$date}.doc");  echo file_get_contents($filename);  readfile($filename); } downfile(); ?>


?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php function downfile($fileurl) {  ob_start();  $filename=$fileurl;  $date=date("Ymd-H:i:m");  header( "Content-type:  application/octet-stream ");  header( "Accept-Ranges:  bytes ");  header( "Content-Disposition:  attachment;  filename= {$date}.doc");  $size=readfile($filename);   header(
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。