search
HomeBackend DevelopmentPHP Tutorialphp实现文件下载和多文件上传

文件下载:

html:

    <a href="1.rar">下载1.rar</a>    <br>    <a href="1.jpg">下载1.jpg</a> <!--会显示文件内容,而不是下载-->    <br>    <a href="doDownload.php?filename=1.jpg">通过程序下载1.jpg</a>    <br>    <a href="doDownload.php?filename=../upload/nv.jpg">下载nv.jpg</a>

php处理:

<?php $filename=$_GET['filename'];//设置下载文件名header('content-disposition:attachment;filename='.basename($filename));header('content-length:'.filesize($filename));readfile($filename);

文件上传:

html代码:

    
请选择您要上传的文件:
请选择您要上传的文件:
请选择您要上传的文件:
请选择您要上传的文件:
请选择您要上传的文件:

php代码:

common.func.php

<?php /** * 得到文件扩展名 * @param string $filename * @return string */function getExt($filename){	return strtolower(pathinfo($filename,PATHINFO_EXTENSION));}/** * 产生唯一字符串 * @return string */function getUniName(){	return md5(uniqid(microtime(true),true));}

upload.func1.php

<?php /** * 构建上传文件信息 * @return unknown */function getFiles(){	$i=0;	foreach($_FILES as $file){		if(is_string($file['name'])){			$files[$i]=$file;			$i++;		}elseif(is_array($file['name'])){			foreach($file['name'] as $key=>$val){				$files[$i]['name']=$file['name'][$key];				$files[$i]['type']=$file['type'][$key];				$files[$i]['tmp_name']=$file['tmp_name'][$key];				$files[$i]['error']=$file['error'][$key];				$files[$i]['size']=$file['size'][$key];				$i++;			}		}	}	return $files;	}/** * 针对于单文件、多个单文件、多文件的上传 * @param array $fileInfo * @param string $path * @param string $flag * @param number $maxSize * @param array $allowExt * @return string */function uploadFile($fileInfo,$path='./uploads',$flag=true,$maxSize=1048576,$allowExt=array('jpeg','jpg','png','gif')){	//$flag=true;	//$allowExt=array('jpeg','jpg','gif','png');	//$maxSize=1048576;//1M	//判断错误号	if($fileInfo['error']===UPLOAD_ERR_OK){		//检测上传得到小		if($fileInfo['size']>$maxSize){			$res['mes']=$fileInfo['name'].'上传文件过大';		}		$ext=getExt($fileInfo['name']);		//检测上传文件的文件类型		if(!in_array($ext,$allowExt)){			$res['mes']=$fileInfo['name'].'非法文件类型';		}		//检测是否是真实的图片类型		if($flag){			if(!getimagesize($fileInfo['tmp_name'])){				$res['mes']=$fileInfo['name'].'不是真实图片类型';			}		}		//检测文件是否是通过HTTP POST上传上来的		if(!is_uploaded_file($fileInfo['tmp_name'])){			$res['mes']=$fileInfo['name'].'文件不是通过HTTP POST方式上传上来的';		}		if($res) return $res;		//$path='./uploads';		if(!file_exists($path)){			mkdir($path,0777,true);			chmod($path,0777);		}		$uniName=getUniName();		$destination=$path.'/'.$uniName.'.'.$ext;		if(!move_uploaded_file($fileInfo['tmp_name'],$destination)){			$res['mes']=$fileInfo['name'].'文件移动失败';		}		$res['mes']=$fileInfo['name'].'上传成功';		$res['dest']=$destination;		return $res;			}else{		//匹配错误信息		switch ($fileInfo ['error']) {			case 1 :				$res['mes'] = '上传文件超过了PHP配置文件中upload_max_filesize选项的值';				break;			case 2 :				$res['mes'] = '超过了表单MAX_FILE_SIZE限制的大小';				break;			case 3 :				$res['mes'] = '文件部分被上传';				break;			case 4 :				$res['mes'] = '没有选择上传文件';				break;			case 6 :				$res['mes'] = '没有找到临时目录';				break;			case 7 :			case 8 :				$res['mes'] = '系统错误';				break;		}		return $res;	}}

doAction5.php

<?php //print_r($_FILES);header("content-type:text/html;charset=utf-8");require_once 'upload.func1.php';require_once 'common.func.php';$files=getFiles();// print_r($files);foreach($files as $fileInfo){	$res=uploadFile($fileInfo);	echo $res['mes'],'<br/>';	$uploadFiles[]=$res['dest'];}$uploadFiles=array_values(array_filter($uploadFiles));print_r($uploadFiles);

上面是通过函数实现,下载封装成为类:

html:


请选择您要上传的文件:

upload.class.php

<?php class upload{	protected $fileName;	protected $maxSize;	protected $allowMime;	protected $allowExt;	protected $uploadPath;	protected $imgFlag;	protected $fileInfo;	protected $error;	protected $ext;	/**	 * @param string $fileName	 * @param string $uploadPath	 * @param string $imgFlag	 * @param number $maxSize	 * @param array $allowExt	 * @param array $allowMime	 */	public function __construct($fileName='myFile',$uploadPath='./uploads',$imgFlag=true,$maxSize=5242880,$allowExt=array('jpeg','jpg','png','gif'),$allowMime=array('image/jpeg','image/png','image/gif')){		$this->fileName=$fileName;		$this->maxSize=$maxSize;		$this->allowMime=$allowMime;		$this->allowExt=$allowExt;		$this->uploadPath=$uploadPath;		$this->imgFlag=$imgFlag;		$this->fileInfo=$_FILES[$this->fileName];	}	/**	 * 检测上传文件是否出错	 * @return boolean	 */	protected function checkError(){		if(!is_null($this->fileInfo)){			if($this->fileInfo['error']>0){				switch($this->fileInfo['error']){					case 1:						$this->error='超过了PHP配置文件中upload_max_filesize选项的值';						break;					case 2:						$this->error='超过了表单中MAX_FILE_SIZE设置的值';						break;					case 3:						$this->error='文件部分被上传';						break;					case 4:						$this->error='没有选择上传文件';						break;					case 6:						$this->error='没有找到临时目录';						break;					case 7:						$this->error='文件不可写';						break;					case 8:						$this->error='由于PHP的扩展程序中断文件上传';						break;										}				return false;			}else{				return true;			}		}else{			$this->error='文件上传出错';			return false;		}	}	/**	 * 检测上传文件的大小	 * @return boolean	 */	protected function checkSize(){		if($this->fileInfo['size']>$this->maxSize){			$this->error='上传文件过大';			return false;		}		return true;	}	/**	 * 检测扩展名	 * @return boolean	 */	protected function checkExt(){		$this->ext=strtolower(pathinfo($this->fileInfo['name'],PATHINFO_EXTENSION));		if(!in_array($this->ext,$this->allowExt)){			$this->error='不允许的扩展名';			return false;		}		return true;	}	/**	 * 检测文件的类型	 * @return boolean	 */	protected function checkMime(){		if(!in_array($this->fileInfo['type'],$this->allowMime)){			$this->error='不允许的文件类型';			return false;		}		return true;	}	/**	 * 检测是否是真实图片	 * @return boolean	 */	protected function checkTrueImg(){		if($this->imgFlag){			if(!@getimagesize($this->fileInfo['tmp_name'])){				$this->error='不是真实图片';				return false;			}			return true;		}	}	/**	 * 检测是否通过HTTP POST方式上传上来的	 * @return boolean	 */	protected function checkHTTPPost(){		if(!is_uploaded_file($this->fileInfo['tmp_name'])){			$this->error='文件不是通过HTTP POST方式上传上来的';			return false;		}		return true;	}	/**	 *显示错误 	 */	protected function showError(){		exit('<span style="color:red">'.$this->error.'</span>');	}	/**	 * 检测目录不存在则创建	 */	protected function checkUploadPath(){		if(!file_exists($this->uploadPath)){			mkdir($this->uploadPath,0777,true);		}	}	/**	 * 产生唯一字符串	 * @return string	 */	protected function getUniName(){		return md5(uniqid(microtime(true),true));	}	/**	 * 上传文件	 * @return string	 */	public function uploadFile(){		if($this->checkError()&&$this->checkSize()&&$this->checkExt()&&$this->checkMime()&&$this->checkTrueImg()&&$this->checkHTTPPost()){			$this->checkUploadPath();			$this->uniName=$this->getUniName();			$this->destination=$this->uploadPath.'/'.$this->uniName.'.'.$this->ext;			if(@move_uploaded_file($this->fileInfo['tmp_name'], $this->destination)){				return  $this->destination;			}else{				$this->error='文件移动失败';				$this->showError();			}		}else{			$this->showError();		}	}}

doAction6.php

<?php header('content-type:text/html;charset=utf-8');require_once 'upload.class.php';$upload=new upload('myFile1','imooc');$dest=$upload->uploadFile();echo $dest;


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!