All Projects → silenceper → Uploadfile

silenceper / Uploadfile

UploadFile.class.php 支持多文件上传的上传类

UploadFile

UploadFile.class.php 支持多文件上传的上传类

vsersion:1.0
author:silenceper
email:silenceper#gmail.com(将#改为@)

说明: 支持多文件上传的上传类 使用方法:
	include '../UploadFile.class.php';
	$upload=new UploadFile();
	if(!$upload->upload()) {
		// 上传错误提示错误信息
		$this->error($upload->getErrorMsg());
	}else{
		// 上传成功 获取上传文件信息
		$info =  $upload->getUploadFileInfo();
	}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].