Home  >  Article  >  Backend Development  >  php下传文件的5种方式

php下传文件的5种方式

WBOY
WBOYOriginal
2016-06-13 13:10:531744browse

php上传文件的5种方式
作者:zccst

一、普通文件上传方式
关于上次文件,之前已经会的有两种方式,具体如下:
1,使用原生态的php上次文件。
(1)前端代码




(2)php代码(upload_file.php)
<?php if ((($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/jpeg")|| ($_FILES["file"]["type"] == "image/pjpeg"))&& ($_FILES["file"]["size"] < 20000)){
  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"];
      }
  }

}else {
  echo "Invalid file";
}
?>


2,使用yii框架的CUpload。
参见1:http://zccst.iteye.com/blog/1114948
参见2:http://zccst.iteye.com/blog/1271104
但是,两者面临的相同问题是提交后刷新页面。即非异步上次方式。

二、异步文件上传方式(3种方式)
现在需要异步上传方式,经过同学的帮助和查资料,得知php异步上传文件的有两种实现方式。
1,使用插件(如,jqueryupload)。
2,使用iframe上传,无需额外插件。

根据目前需求:尽量少使用插件。于是采用后者,即使用iframe异步上传文件
具体稍后补充
(1)前端html

导入文件:


function startUpload() {
	var spanObj = document.getElementById("info");
	spanObj.innerHTML = " 开始上传";
	document.getElementById("upForm").sumbit();
}
//回调
function stopUpload(responseText){
	var spanObj = document.getElementById("info");
	spanObj.innerHTML = "上传成功";
	spanObj.innerHTML = responseText;
}


(2)服务器端代码
$file = $_FILES['myfile'];
$fileName = uploadFile($file);
//$result = readFromFile("../upload/" . $fileName);
echo "<script type="text/javascript">window.top.window.stopUpload('{$fileName}')</script>";

function uploadFile($file) {
	// 上传路径     
	$destinationPath = "../upload/";
	if (!file_exists($destinationPath)){
		mkdir($destinationPath , 0777);
	}
	//重命名
	$fileName = date('YmdHis') . '_' . iconv('utf-8' , 'gb2312' , basename($file['name']));
	if (move_uploaded_file($file['tmp_name'], $destinationPath . $fileName)) {
		return iconv('gb2312' , 'utf-8' , $fileName);
	}
	return '';
}


//代码注释
/*
1,关于basename方法
$path = "/testweb/home.php";
//显示带有文件扩展名的文件名
echo basename($path);
//显示不带有文件扩展名的文件名
echo basename($path,".php");

2,关于iconv
iconv('gb2312' , 'utf-8' , $fileName);//将$fileName从gb2312转为utf-8格式。
注:该函数需要开启php.ini里面的php_iconv.dll

3,关于$_FILES['myfile']
$_FILES相当于一个二维数组,而$_FILES['myfile']相当于一个一维数组。所以可以
$f = $_FILES['myfile'];
echo $f['name'];

如果直接访问该$_FILES['myfile'],则会报Undefined index: myfile。此时加上
if(!isset($_FILES['myfile'])){
	die('上传文件不存在!');
}
*/


3,使用Yii+iframe方式
参见:http://zccst.iteye.com/blog/1271091

附:在网上查到的相关资料如下

http://www.cnblogs.com/spemoon/archive/2011/01/07/1930221.html

http://wenku.baidu.com/view/80522df6ba0d4a7302763abb.html

http://www.jb51.net/article/28427.htm

http://apps.hi.baidu.com/share/detail/20419052

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