php教程 php手册 php获取本地电脑文件后下载另存为

php获取本地电脑文件后下载另存为

May 25, 2016 pm 04:54 PM
fopen substr 파일 업로드 파일 다운로드

在php中下载文件我们用得最多的是直接使用readfile()函数,readfile()可以实现把服务器源文件给下载,下面我来给大家介绍readfile下载文件的方法与性能介绍

例1

 代码如下 复制代码

header(“Content-Type: text/html; charset=UTF-8″);
header(“Content-type:application/text”);

// 文件将被称为 downloaded.pdf
header(“Content-Disposition:attachment;filename=log.text”);

// PDF 源在 original.pdf 中
readfile(“ptindex_user_profilebasc.html”);

?>

例2

 代码如下 复制代码

 

 $item=trim($_GET['fileName']).".txt";  
    $abs_item='/usr/home/文件夹名称/文件夹名称/文件夹名称/'.$item;  
    $browser='IE';  
    header('Content-Type: '.(($browser=='IE' || $browser=='OPERA')?  
        'application/octetstream':'application/octet-stream'));  
    header('Expires: '.gmdate('D, d M Y H:i:s').' GMT');  
    header('Content-Transfer-Encoding: binary');  
    header('Content-Length: '.filesize($abs_item));  
    if($browser=='IE') {  
        header('Content-Disposition: attachment; filename="'.$item.'"');  
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');  
        header('Pragma: public');  
    } else {  
        header('Content-Disposition: attachment; filename="'.$item.'"');  
        header('Cache-Control: no-cache, must-revalidate');  
        header('Pragma: no-cache');  
    }  
@readfile($abs_item); 

上面只能下载本地函数,如果要下载远程的我们可以如下操作PHP远程下载文件到本地的函数

 代码如下 复制代码

echo httpcopy("/baidu_sylogo1.gif");

function httpcopy($url, $file="", $timeout=60) {
    $file = empty($file) ? pathinfo($url,PATHINFO_BASENAME) : $file;
    $dir = pathinfo($file,PATHINFO_DIRNAME);
    !is_dir($dir) && @mkdir($dir,0755,true);
    $url = str_replace(" ","%20",$url);

    if(function_exists('curl_init')) {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        $temp = curl_exec($ch);
        if(@file_put_contents($file, $temp) && !curl_error($ch)) {
            return $file;
        } else {
            return false;
        }
    } else {
        $opts = array(
            "http"=>array(
            "method"=>"GET",
            "header"=>"",
            "timeout"=>$timeout)
        );
        $context = stream_context_create($opts);
        if(@copy($url, $file, $context)) {
            //$http_response_header
            return $file;
        } else {
            return false;
        }
    }
}
?>

最后分享一个支持多种文件下载的类函数

 代码如下 复制代码

/**
 * 使用方法:
 * require_once 'download.class.php';
 * $filepath = './path/filename.html';
 * $downname = 'downname.html';
 * $down = new download($filepath,$downname);
 * 或
 * $down = new download();
 *
 * */
class download
{
 var $filepath;
 var $downname;
 var $ErrInfo;
 var $is_attachment = false;
 var $_LANG = array(
   'err' => '错误',
   'args_empty' => '参数错误。',
   'file_not_exists' => '文件不存在!',
   'file_not_readable' => '文件不可读!',
  );
 var $MIMETypes = array(
   'ez' => 'application/andrew-inset',
   'hqx' => 'application/mac-binhex40',
   'cpt' => 'application/mac-compactpro',
   'doc' => 'application/msword',
   'bin' => 'application/octet-stream',
   'dms' => 'application/octet-stream',
   'lha' => 'application/octet-stream',
   'lzh' => 'application/octet-stream',
   'exe' => 'application/octet-stream',
   'class' => 'application/octet-stream',
   'so' => 'application/octet-stream',
   'dll' => 'application/octet-stream',
   'oda' => 'application/oda',
   'pdf' => 'application/pdf',
   'ai' => 'application/postscrīpt',
   'eps' => 'application/postscrīpt',
   'ps' => 'application/postscrīpt',
   'smi' => 'application/smil',
   'smil' => 'application/smil',
   'mif' => 'application/vnd.mif',
   'xls' => 'application/vnd.ms-excel',
   'ppt' => 'application/vnd.ms-powerpoint',
   'wbxml' => 'application/vnd.wap.wbxml',
   'wmlc' => 'application/vnd.wap.wmlc',
   'wmlsc' => 'application/vnd.wap.wmlscrīptc',
   'bcpio' => 'application/x-bcpio',
   'vcd' => 'application/x-cdlink',
   'pgn' => 'application/x-chess-pgn',
   'cpio' => 'application/x-cpio',
   'csh' => 'application/x-csh',
   'dcr' => 'application/x-director',
   'dir' => 'application/x-director',
   'dxr' => 'application/x-director',
   'dvi' => 'application/x-dvi',
   'spl' => 'application/x-futuresplash',
   'gtar' => 'application/x-gtar',
   'hdf' => 'application/x-hdf',
   'js' => 'application/x-javascrīpt',
   'skp' => 'application/x-koan',
   'skd' => 'application/x-koan',
   'skt' => 'application/x-koan',
   'skm' => 'application/x-koan',
   'latex' => 'application/x-latex',
   'nc' => 'application/x-netcdf',
   'cdf' => 'application/x-netcdf',
   'sh' => 'application/x-sh',
   'shar' => 'application/x-shar',
   'swf' => 'application/x-shockwave-flash',
   'sit' => 'application/x-stuffit',
   'sv4cpio' => 'application/x-sv4cpio',
   'sv4crc' => 'application/x-sv4crc',
   'tar' => 'application/x-tar',
   'tcl' => 'application/x-tcl',
   'tex' => 'application/x-tex',
   'texinfo' => 'application/x-texinfo',
   'texi' => 'application/x-texinfo',
   't' => 'application/x-troff',
   'tr' => 'application/x-troff',
   'roff' => 'application/x-troff',
   'man' => 'application/x-troff-man',
   'me' => 'application/x-troff-me',
   'ms' => 'application/x-troff-ms',
   'ustar' => 'application/x-ustar',
   'src' => 'application/x-wais-source',
   'xhtml' => 'application/xhtml+xml',
   'xht' => 'application/xhtml+xml',
   'zip' => 'application/zip',
   'au' => 'audio/basic',
   'snd' => 'audio/basic',
   'mid' => 'audio/midi',
   'midi' => 'audio/midi',
   'kar' => 'audio/midi',
   'mpga' => 'audio/mpeg',
   'mp2' => 'audio/mpeg',
   'mp3' => 'audio/mpeg',
   'wma' => 'audio/mpeg',
   'aif' => 'audio/x-aiff',
   'aiff' => 'audio/x-aiff',
   'aifc' => 'audio/x-aiff',
   'm3u' => 'audio/x-mpegurl',
   'ram' => 'audio/x-pn-realaudio',
   'rm' => 'audio/x-pn-realaudio',
   'rpm' => 'audio/x-pn-realaudio-plugin',
   'ra' => 'audio/x-realaudio',
   'wav' => 'audio/x-wav',
   'pdb' => 'chemical/x-pdb',
   'xyz' => 'chemical/x-xyz',
   'bmp' => 'image/bmp',
   'gif' => 'image/gif',
   'ief' => 'image/ief',
   'jpeg' => 'image/jpeg',
   'jpg' => 'image/jpeg',
   'jpe' => 'image/jpeg',
   'png' => 'image/png',
   'tiff' => 'image/tiff',
   'tif' => 'image/tiff',
   'djvu' => 'image/vnd.djvu',
   'djv' => 'image/vnd.djvu',
   'wbmp' => 'image/vnd.wap.wbmp',
   'ras' => 'image/x-cmu-raster',
   'pnm' => 'image/x-portable-anymap',
   'pbm' => 'image/x-portable-bitmap',
   'pgm' => 'image/x-portable-graymap',
   'ppm' => 'image/x-portable-pixmap',
   'rgb' => 'image/x-rgb',
   'xbm' => 'image/x-xbitmap',
   'xpm' => 'image/x-xpixmap',
   'xwd' => 'image/x-xwindowdump',
   'igs' => 'model/iges',
   'iges' => 'model/iges',
   'msh' => 'model/mesh',
   'mesh' => 'model/mesh',
   'silo' => 'model/mesh',
   'wrl' => 'model/vrml',
   'vrml' => 'model/vrml',
   'css' => 'text/css',
   'html' => 'text/html',
   'htm' => 'text/html',
   'asc' => 'text/plain',
   'txt' => 'text/plain',
   'rtx' => 'text/richtext',
   'rtf' => 'text/rtf',
   'sgml' => 'text/sgml',
   'sgm' => 'text/sgml',
   'tsv' => 'text/tab-separated-values',
   'wml' => 'text/vnd.wap.wml',
   'wmls' => 'text/vnd.wap.wmlscrīpt',
   'etx' => 'text/x-setext',
   'xsl' => 'text/xml',
   'xml' => 'text/xml',
   'mpeg' => 'video/mpeg',
   'mpg' => 'video/mpeg',
   'mpe' => 'video/mpeg',
   'qt' => 'video/quicktime',
   'mov' => 'video/quicktime',
   'mxu' => 'video/vnd.mpegurl',
   'avi' => 'video/x-msvideo',
   'movie' => 'video/x-sgi-movie',
   'wmv' => 'application/x-mplayer2',
   'ice' => 'x-conference/x-cooltalk',
  );
 
 function download($filepath='',$downname='')
 {
  if($filepath == '' AND !$this->filepath)
  {
   $this->ErrInfo = $this->_LANG['err'] . ':' . $this->_LANG['args_empty'];
   return false;
  }
  if($filepath == '') $filepath = $this->filepath;
  if(!file_exists($filepath))
  {
   $this->ErrInfo = $this->_LANG['err'] . ':' . $this->_LANG['file_not_exists'];
   return false;
  }
  if($downname == '' AND !$this->downname) $downname = $filepath;
  if($downname == '') $downname = $this->downname;
  // 文件扩展名
  $fileExt = substr(strrchr($filepath, '.'), 1);
  // 文件类型
  $fileType = $this->MIMETypes[$fileExt] ? $this->MIMETypes[$fileExt] : 'application/octet-stream';
  // 是否是图片
  $isImage = False;
  /*
  简述: getimagesize(), 详见手册
  说明: 判定某个文件是否为图片的有效手段, 常用在文件上传验证
  */
  $imgInfo = @getimagesize($filepath);
  if ($imgInfo[2] && $imgInfo['bits'])
  {
   $fileType = $imgInfo['mime'];  // 支持不标准扩展名
   $isImage = True;
  }
  // 显示方式
  if($this->is_attachment)
  {
   $attachment = 'attachment';  // 指定弹出下载对话框
  }
  else
  {
   $attachment = $isImage ? 'inline' : 'attachment';
  }
  // 读取文件
  if (is_readable($filepath))
  {
   /*
   简述: ob_end_clean() 清空并关闭输出缓冲, 详见手册
   说明: 关闭输出缓冲, 使文件片段内容读取至内存后即被送出, 减少资源消耗
   */
   ob_end_clean();
   /*
   HTTP头信息: 指示客户机可以接收生存期不大于指定时间(秒)的响应
   */
   header('Cache-control: max-age=31536000');
   /*
   HTTP头信息: 缓存文件过期时间(格林威治标准时)
   */
   header('Expires: ' . gmdate('D, d M Y H:i:s', time()+31536000) . ' GMT');
   /*
   HTTP头信息: 文件在服务期端最后被修改的时间
   Cache-control,Expires,Last-Modified 都是控制浏览器缓存的头信息
   在一些访问量巨大的门户, 合理的设置缓存能够避免过多的服务器请求, 一定程度下缓解服务器的压力
   */
   header('Last-Modified: ' . gmdate('D, d M Y H:i:s' , filemtime($filepath) . ' GMT'));
   /*
   HTTP头信息: 文档的编码(Encode)方法, 因为附件请求的文件多样化, 改变编码方式有可能损坏文件, 故为none
   */
   header('Content-Encoding: none');
   /*
   HTTP头信息: 告诉浏览器当前请求的文件类型.
   1.始终指定为application/octet-stream, 就代表文件是二进制流, 始终提示下载.
   2.指定对应的类型, 如请求的是mp3文件, 对应的MIME类型是audio/mpeg, IE就会自动启动Windows Media Player进行播放.
   */
   header('Content-type: ' . $fileType);
   /*
   HTTP头信息: 如果为attachment, 则告诉浏览器, 在访问时弹出”文件下载”对话框, 并指定保存时文件的默认名称(可以与服务器的文件名不同)
   如果要让浏览器直接显示内容, 则要指定为inline, 如图片, 文本
   */
   header('Content-Disposition: ' . $attachment . '; filename=' . $downname);
   /*
   HTTP头信息: 告诉浏览器文件长度
   (IE下载文件的时候不是有文件大小信息么?)
   */
   header('Content-Length: ' . filesize($filepath));
   // 打开文件(二进制只读模式)
   $fp = fopen($filepath, 'rb');
   // 输出文件
   fpassthru($fp);
   // 关闭文件
   fclose($fp);
   return true;
  }
  else
  {
   $this->ErrInfo = $this->_LANG['err'] . ':' . $this->_LANG['file_not_readable'];
   return false;
  }
 }
}
?>



本文地址:

转载随意,但请附上文章地址:-)

본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

파일 다운로드 후 Python 열기 작업 파일 다운로드 후 Python 열기 작업 Apr 03, 2024 pm 03:39 PM

Python은 다운로드한 파일을 열 수 있는 다음 옵션을 제공합니다: open() 함수: 지정된 경로와 모드(예: 'r', 'w', 'a')를 사용하여 파일을 엽니다. 요청 라이브러리: download() 메서드를 사용하여 자동으로 이름을 할당하고 파일을 직접 엽니다. Pathlib 라이브러리: write_bytes() 및 read_text() 메서드를 사용하여 파일 내용을 쓰고 읽습니다.

Laravel을 사용하여 파일 업로드 및 다운로드 기능을 구현하는 방법 Laravel을 사용하여 파일 업로드 및 다운로드 기능을 구현하는 방법 Nov 02, 2023 pm 04:36 PM

Laravel을 사용하여 파일 업로드 및 다운로드 기능을 구현하는 방법 Laravel은 웹 애플리케이션을 보다 쉽고 효율적으로 개발할 수 있도록 다양한 기능과 도구를 제공하는 인기 있는 PHP 웹 프레임워크입니다. 일반적으로 사용되는 기능 중 하나는 파일 업로드 및 다운로드입니다. 이 글에서는 Laravel을 사용하여 파일 업로드 및 다운로드 기능을 구현하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. 파일 업로드 파일 업로드란 로컬 파일을 서버에 업로드하여 저장하는 것을 말합니다. Laravel에서는 파일 업로드를 사용할 수 있습니다.

PHP 경고 해결 방법: fopen(): 스트림을 열지 못했습니다: 해당 파일이나 디렉터리가 없습니다. PHP 경고 해결 방법: fopen(): 스트림을 열지 못했습니다: 해당 파일이나 디렉터리가 없습니다. Aug 19, 2023 am 10:44 AM

PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory 해결 방법 PHP 개발을 사용하는 과정에서 "PHPWarning:fopen():failedtoopenstream:Nosuchfileordirectory"와 같은 파일 작업 문제가 종종 발생합니다.

Workerman 문서에서 파일 업로드 및 다운로드 구현 Workerman 문서에서 파일 업로드 및 다운로드 구현 Nov 08, 2023 pm 06:02 PM

Workerman 문서에서 파일 업로드 및 다운로드를 구현하려면 특정 코드 예제가 필요합니다. 소개: Workerman은 간단하고 효율적이며 사용하기 쉬운 고성능 PHP 비동기 네트워크 통신 프레임워크입니다. 실제 개발에서 파일 업로드 및 다운로드는 일반적인 기능 요구 사항입니다. 이 기사에서는 Workerman 프레임워크를 사용하여 파일 업로드 및 다운로드를 구현하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. 1. 파일 업로드: 파일 업로드란 로컬 컴퓨터에 있는 파일을 서버로 전송하는 작업을 말합니다. 다음이 사용됩니다

gRPC를 사용하여 Golang에서 파일 업로드를 구현하는 방법은 무엇입니까? gRPC를 사용하여 Golang에서 파일 업로드를 구현하는 방법은 무엇입니까? Jun 03, 2024 pm 04:54 PM

gRPC를 사용하여 파일 업로드를 구현하는 방법은 무엇입니까? 요청 및 응답 메시지를 포함하여 지원 서비스 정의를 만듭니다. 클라이언트에서는 업로드할 파일이 열리고 청크로 분할된 다음 gRPC 스트림을 통해 서버로 스트리밍됩니다. 서버 측에서는 파일 청크가 수신되어 파일에 저장됩니다. 서버는 파일 업로드가 완료된 후 업로드 성공 여부를 나타내는 응답을 보냅니다.

PHP 경고 해결 방법: fopen(): X 라인의 file.php에서 SSL 작업이 실패했습니다. PHP 경고 해결 방법: fopen(): X 라인의 file.php에서 SSL 작업이 실패했습니다. Aug 25, 2023 am 09:22 AM

PHPWarning:fopen():SSLOperationfailedinfile.phponlineX 해결 방법 PHP 프로그래밍에서는 fopen 함수를 사용하여 파일이나 URL을 열고 관련 작업을 수행하는 경우가 많습니다. 그러나 fopen 함수를 사용할 때 때때로 Warning:fopen():SSLOperationfailedinfile.p와 유사한 문제가 발생할 수 있습니다.

Java 파일 업로드 예외(FileUploadException)를 해결하는 방법 Java 파일 업로드 예외(FileUploadException)를 해결하는 방법 Aug 18, 2023 pm 12:11 PM

Java 파일 업로드 예외(FileUploadException)를 해결하는 방법 웹 개발에서 자주 발생하는 문제 중 하나는 FileUploadException(파일 업로드 예외)입니다. 파일 크기 제한 초과, 파일 형식 불일치, 잘못된 서버 구성 등 다양한 이유로 인해 발생할 수 있습니다. 이 문서에서는 이러한 문제를 해결하는 몇 가지 방법을 설명하고 해당 코드 예제를 제공합니다. 업로드된 파일의 크기를 제한하세요. 대부분의 경우 파일 크기를 제한하세요.

PHP 경고 해결 방법: fopen(): 스트림을 열지 못했습니다: 권한이 거부되었습니다. PHP 경고 해결 방법: fopen(): 스트림을 열지 못했습니다: 권한이 거부되었습니다. Aug 20, 2023 pm 01:45 PM

PHPWarning:fopen():failedtoopenstream:Permissiondenied 문제 해결 방법 PHP 프로그램을 개발하는 과정에서 PHPWarning:fopen():failedtoopenstream:Permissiondenied와 같은 오류 메시지를 자주 접하게 됩니다. 이 오류는 일반적으로 잘못된 파일 또는 디렉터리 권한으로 인해 발생합니다.

See all articles