当前位置:  编程技术>php
本页文章导读:
    ▪php header函数实现文件下载的实例代码      在php编程中,使用其header函数实现文件的下载,以PDF为例:   代码示例: <?php //outputting a PDF header('Content-type: application/pdf'); //called downloaded.pdf header('Content-Disposition: attachment; filename="downlo.........
    ▪一个简单的php文件下载函数      PHP下载函数。   代码示例: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">         <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn">   .........
    ▪php实现上传与下载文件的一段代码      1,页面部分 index.php 代码示例: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-eq.........

[1]php header函数实现文件下载的实例代码
    来源: 互联网  发布时间: 2013-12-24

在php编程中,使用其header函数实现文件的下载,以PDF为例:
 

代码示例:
<?php
//outputting a PDF
header('Content-type: application/pdf');
//called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>

代码说明:
对于第一句,是必须的,只要改一下文档的类型就行,例如下载txt文件,那就改为header(’Content-type: application/txt’);,
第二句,为下载文档起一个名字,如果是txt文件的话,可以改为header(’Content-Disposition: attachment; filename=”downloaded.txt”‘);,
第三句,readfile这个函数就是读取一个文件然后输出,这里文件的路径需要是真实的文件路径,如果是downloads文件夹下面的一个original.txt文件,可以这样写readfile(’downloads/original.txt’);,而如果提交的页面会输出文本等字符,那么下载到的文件会是原文件original.txt和提交的页面输出的文字的混合文件。


    
[2]一个简单的php文件下载函数
    来源: 互联网  发布时间: 2013-12-24

PHP下载函数。
 

代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">        
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn">       
<head>       
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />       
<meta http-equiv="Content-Language" content="UTF-8" />
<title>php文件下载_www.</title>
</head>       
<form method="post">       
<input name="url" size="20" />       
<input name="submit" type="submit" />       
<!-- <input type="hidden" name="MAX_FILE_SIZE" value="2097152" />-->       
</form>       
<?php
    set_time_limit(24*60*60);
    if (!isset()($_POST['submit'])) die ();
    $destination_folder = './down/';   // 文件夹保存下载文件。必须以斜杠结尾
    $url = $_POST['url'];
    $newfname = $destination_folder.basename($url);
    $file = fopen($url, "rb");
    if ($file) {
        $newf = fopen($newfname, "wb");
        if ($newf) while (!feof($file)) {
            fwrite($newf, fread($file, 1024*8), 1024*8);
        }
    }
    if ($file) {
        fclose($file);
    }
    if ($newf) {
        fclose($newf);
    }
?>

代码比较简单,适合刚刚接触php文件操作的朋友,有利于快速掌握有关php文件下载的知识。


    
[3]php实现上传与下载文件的一段代码
    来源: 互联网  发布时间: 2013-12-24

1,页面部分 index.php

代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>文件上传下载-www.</title>
</head>
<body>
<form action="/blog_article/upload_file.html" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="hidden" name="max_file_size" value="1000000000">
<input type="file" name="file" id="file" />
<input type="submit" name="submit" value="Submit" />
</form>
<br/>
<br/>
<table width="400" border="1">
<?php
$dir = 'upload/';
if(is_dir($dir)) {
   if ($dh = opendir($dir)) {
   while (($file = readdir($dh)) !== false) {
       if($file!="." && $file!="..") {
       echo "<tr><td><a href='".$dir.$file."'>".$file."</a></td></tr>";
     }
  }
  closedir($dh);
}
}
?>
</table>
</body>
</html>

2,上传文件源代码 upload_file.php

代码示例:

<?php
/**
* 文件上传与下载
* edit www.
*/
  if ($_FILES["file"]["error"] > 0)
  {
  echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
  }
  else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br />";
  echo "Type: " . $_FILES["file"]["type"] . "<br />";
  echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
  echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
 
  if (file_exists("upload/" . $_FILES["file"]["name"]))
  {
  echo $_FILES["file"]["name"] . " already exists. ";
  }
  else
  {
  move_uploaded_file($_FILES["file"]["tmp_name"],
  "upload/" . $_FILES["file"]["name"]);
  echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
  }
  }

  //下载文件
  header('HTTP/1.1 301 Moved Permanently');
  header('Location:files.php');
?>


    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3