发布于 2014-12-13 13:53:28 | 171 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的PHP教程,程序狗速度看过来!

PHP开源脚本语言

PHP(外文名: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,入门门槛较低,易于学习,使用广泛,主要适用于Web开发领域。PHP的文件后缀名为php。


本文为大家讲解的是php 下载保存文件保存到本地的两种实现方法,感兴趣的同学参考下。
第一种:


<?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();
?>



<?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( "Accept-Length: " .$size);
}
 $url="url地址";
 downfile($url);
?>


第二种:


<?php
function downfile($fileurl)
{
$filename=$fileurl;
$file   =   fopen($filename, "rb");
Header( "Content-type:   application/octet-stream ");
Header( "Accept-Ranges:   bytes ");
Header( "Content-Disposition:   attachment;   filename= 4.doc");
$contents = "";
while (!feof($file)) {
  $contents .= fread($file, 8192);
}
echo $contents;
fclose($file);
}
$url="url地址";
downfile($url);
?>


最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务