search
HomeBackend DevelopmentPHP Tutorialphp实现文件下传的例子(附详细源码)

php实现文件上传的例子(附详细源码)

今天用PHP做了个文件上传工具,功能还是很完善滴,如下:

每个图片上传之后,都有自己的地址,改变原图位置或重命名时,将不会重复上传。

一、功能:

A:文件分类上传

B:生成相应的文件夹,如本例,选择团,生成文件夹tuan

C:点击图片,查看详细

二、HTML代码:

	<div id="container">		<fieldset>			<legend class="img"><img  src="/static/imghwm/default1.png" data-src="css/logo.png" class="lazy"    style="max-width:90%" alt="php实现文件下传的例子(附详细源码)" ></legend>			<form action="" method="post" name="myform" id="myform" onsubmit="return false" enctype="multipart/form-data">			    <strong>亲,请选择你要上传的文件</strong>				<div class="file"><input type="file" id="fileToUpload" name="fileToUpload"></div>				<select id="product">               		<option value="" if echo> >请选择产品</option>               		<option value="tuan" if echo> >团</option>			               	</select>               	<button id="postBtn">Submit</button>			</form>			<div id="info"></div>			<div style="position:relative; top:40px; left:20px;">				<a id="loading" style="display:none"><img  src="/static/imghwm/default1.png" data-src="css/loading.gif" class="lazy"    style="max-width:90%" alt="php实现文件下传的例子(附详细源码)" ></a>			</div>			<a href="#" id="img_link" target="_blank">				<div id="img_url">buding</div>				<br>				<img  class="preview" id="preview" src=""   style="max-width:90%" alt="php实现文件下传的例子(附详细源码)" >			</a>		</fieldset>	</div>

三、Javascript代码:

	<script type="text/javascript">		$('#postBtn').click(function(){			$('#preview').hide();			$('#img_url').hide();			$('#loading')				.ajaxStart(function(){					$(this).show();				})				.ajaxComplete(function(){					$(this).hide();				});			if($('#fileToUpload').val() == ""){				$('#info').html("亲,还没选择文件呢");				var jObject={"Url":"","Height":413};				var jString=JSON.stringify(jObject);				window.parent.postMessage(jString,'*');				return false;			} 			if($('#product').val() == ""){				$('#info').html("亲,还没选择产品呢");				$('#info').css("color","#e9af32");				var jObject={"Url":"","Height":413};				var jString=JSON.stringify(jObject);				window.parent.postMessage(jString,'*');				return false;			} 			var val = $('#product').val();			$.ajaxFileUpload({					url:'ajaxupload.php',				secureuri:false,				fileElementId:'fileToUpload',				dataType: 'text',				data:{product:val},				success: function (data, status)				{					if(data.search(/http:\/\//i) < 0 ){						$('#info').html(data);						var jObject={"Url":"","Height":413};						var jString=JSON.stringify(jObject);						window.parent.postMessage(jString,'*');					}else{						$('#info').html("您上传的文件为:<br/>");						$('#preview').attr("src",data);						$('#img_link').attr("href",data);						$('#img_url').html(data);						$('#preview').show();						$('#img_url').show();						$('#preview').load(function(){							var imgH=$('#preview').height();							var jObject={"Url":data,"Height":imgH+228,"oid":"<?php echo @$_REQUEST['oid']; ?>"};							var jString=JSON.stringify(jObject);							window.parent.postMessage(jString,'*');						});					}				},				error: function (data, status, e){						$('#info').html(data+e);				}			});		});	</script>

四、PHP代码

<?phprequire_once ('config.php');if(empty($_FILES) || empty($_REQUEST)){	header('location:imgupload.php');	exit;}array_push($_FILES, $_REQUEST);$filename = 'fileToUpload';$product = @$_FILES[0]['product'];$today = date("Y-m-d");$time = date("YmdHis"); $year = date("Y");$month = date("m");$day = date("d");$img_path = $product.'/'.$year.'/'.$month.'/'.$day.'/';$destination_dir = ROOT_PATH.'/pic/'.$img_path.'/';if(!is_uploaded_file($_FILES[$filename]['tmp_name'])){//验证上传文件是否存在	echo "请选择你想要上传的图片";	exit;}	if($product == "") {//选择产品   	echo "请选择产品";	exit;}	$files = $_FILES[$filename];   	if($max_file_size < $files['size']){//判断文件是否超过限制大小		echo "图片太大了,传个小点的吧(<=2MB)";		exit;	}			if(!file_exists($destination_dir)) {//判断上传目录是否存在,不存在则创建一个.		if(!mkdir($destination_dir,0777,true)) {			echo "创建目录 {".$destination_dir."} 失败<可能是权限问题>";			exit;		}	}	$type = pathinfo($files['name']);    $type = strtolower($type["extension"]);	$type =".".$type;	$tmp_name = $files['tmp_name'];	$md5file = md5_file($tmp_name);//生成md5文件	$new_name =$md5file.$type;    $img_relat_path = $img_path.$new_name;	$img_abs_path =	$destination_dir.$new_name;		    $url = IMG_URL.$img_relat_path;    //判断数据库中图片是否存在    $sql="select url from file_url where md5 = '".$md5file."'";    $res=$db->getOne($sql);    if($res) {        echo $res['url'];        exit;     }             if(!move_uploaded_file ($files['tmp_name'], $img_abs_path)) {//上传文件        echo "上传文件失败";			exit;    }        //将图片存入数据库           $sql="insert into file_url(url,product,md5,create_time) values('".$url."','".$product."','".$md5file."','".$today."')";    $db->Execute($sql);    $db->CloseDB();    echo $url;?>



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
What is the difference between unset() and session_destroy()?What is the difference between unset() and session_destroy()?May 04, 2025 am 12:19 AM

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

What is sticky sessions (session affinity) in the context of load balancing?What is sticky sessions (session affinity) in the context of load balancing?May 04, 2025 am 12:16 AM

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

What are the different session save handlers available in PHP?What are the different session save handlers available in PHP?May 04, 2025 am 12:14 AM

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

What is a session in PHP, and why are they used?What is a session in PHP, and why are they used?May 04, 2025 am 12:12 AM

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

Explain the lifecycle of a PHP session.Explain the lifecycle of a PHP session.May 04, 2025 am 12:04 AM

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

What is the difference between absolute and idle session timeouts?What is the difference between absolute and idle session timeouts?May 03, 2025 am 12:21 AM

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

What steps would you take if sessions aren't working on your server?What steps would you take if sessions aren't working on your server?May 03, 2025 am 12:19 AM

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

What is the significance of the session_start() function?What is the significance of the session_start() function?May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

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

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor