当前位置:   article > 正文

php实现图片、PDF、DOC、TXT多种文件上传下载功能(附源码)_php如何实现把pdf下载到本地

php如何实现把pdf下载到本地
 <!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>上传文件</title>
</head>
<body>
  <form action="{:U('Admin/Down/uploadfile')}" enctype="multipart/form-data" method="post" style="text-align:center;margin:30px;">
    <input type="file" name="photo"/>
    <input type="hidden" name="MAX_FILE_SIZE" value="204800" />
    <input type="hidden" name="type" value="webfile"/>
    <input type="submit" value="确定上传">
  </form>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

//上传方法

 public function uploadfile(){
    $type=$_POST['type'];
    $chat=$_POST['phpto_chat'];
    $showname=$_POST['name'];
    $upload = new \Think\Upload();// 实例化上传类
    $upload->maxSize   =     3145728 ;// 设置附件上传大小
    $upload->exts      =     array('jpg', 'gif', 'png', 'jpeg','pdf','doc','docx','txt');
    // 设置附件上传类型
    $upload->rootPath  =     './Upload/file/'; // 设置附件上传根目录
    $upload->savePath  =     ''; // 设置附件上传(子)目录
    $upload->subName  = array('date','Ymd');
    $upload->saveName = array('uniqid','');
    // $upload->saveName = '';
    // 上传文件
    $info   =   $upload->upload();
    $data['pubtime'] = NOW_TIME;
    if(!$info) {// 上传错误提示错误信息
        $this->error($upload->getError());
    }else{// 上传成功
      // die(var_dump($type));
      $data['path'] = '/Upload/file/'.$info['photo']['savepath'].$info['photo']['savename'];
      $size=$info['photo']['size'];
      if($size>1024){
        $lastsize=intval($size/1024).'KB';
      }
      if(($size/1024)>1024){
        $lastsize=intval($size/1048576).'MB';
      }
      $downdata=array(
        'title'=>$info['photo']['name'],
        'type'=>$info['photo']['ext'],
        'size'=>$lastsize,
        'src'=>$data['path'],
        'time'=>time(),
      );
      $result = $this->downModle->add($downdata); //保存数据库
      if($result>0){
          $this->success("添加成功!", U('Admin/down/index'), 1);
      }else{
          $this->error("添加失败!", U('Admin/down/index'), 1);
      }
      $this->alertOpenerClose($data['path']);

    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
//下载功能
    public function downfile(){
    if(isset($_GET['id'])){
      $data=$this->downModle->where('id='.$_GET['id'])->field('src,title')->select();
      $filename=$data[0]['src'];//获取文件的相对路径
      $title=$data[0]['title'];//获取文件的名称,必须带后缀格式
    }

   Header( "Content-type:  application/octet-stream ");
   Header( "Accept-Ranges:  bytes ");
   Header( "Accept-Length: " .filesize($filename));
   header( "Content-Disposition:  attachment;  filename= $title");//如果没带格式将生成不知道什么格式的文件
   echo file_get_contents('http://www.100txy'.$filename);//用绝对路径
   readfile($filename);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/668631
推荐阅读
相关标签
  

闽ICP备14008679号