PHP文件上传封装成函数

 $max_size) {
			// 文件过大
			$error = "当前上传的文件超过".$max_size;
			return false;
		}

		// 构造文件名字:类型_年月日+随机字符串.$ext
		$fullname = strstr($file['type'], "/", true).'_'.date('Ymd');
		// 产生随机字符串
		for ($i=0; $i < 4; $i++) { 
			$fullname .= chr(mt_rand(65, 90));
		}
		// 拼接上后缀
		$fullname .= '.'.$ext;

		// 经过条件限定后,移动到指定目录
		if (!is_uploaded_file($file['tmp_name'])) {
			// 文件不是上传的
			$error = "不是上传文件";
			return false;
		}

		if (move_uploaded_file($file['tmp_name'], $path .'/'.$fullname)) {
			# 成功
			return $fullname;
		} else {
			// 移动失败
			$error = "文件上传失败!";
			return false;
		}
	}

	// 测试
	$file = $_FILES['userfile'];
	$path = "uploads";
	$allow_type = array('image/jpg', 'image/jpeg', 'image/gif', 'image/pjpeg');
	$allow_format = array('jpg', 'jpeg', 'gif');
	$max_size = 800000;

	if ($filename = upload_single($file, $allow_type, $path, $error, $allow_format, $max_size)) {
		echo $filename;
	} else {
		echo $error;
	}
 ?>

写一个html表单,上传文件空间name设置成userfile即可测试

你可能感兴趣的:(PHP文件上传封装成函数)