真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

PHP中面向?qū)ο蟮奈募蟼黝?lèi)

 $value) {
			$this->setOption($key,$value);
		}
		
	}
	
	protected function setOption($key,$value)
	{
		$key = strtolower($key);
		
		$allPro = get_class_vars(get_class($this));
		
		if (array_key_exists($key,$allPro)) {
			$this->$key = $value;
		}
	}
	
	
	
	//設(shè)置一個(gè)get方法專(zhuān)門(mén)獲得新路徑
	
	//設(shè)置 一個(gè)get方法專(zhuān)門(mén)來(lái)獲得錯(cuò)誤信息
	
	//成員方法上傳方法
	public function uploadFile($field)
	{
		
		//檢測(cè)路徑用戶(hù)是否定義過(guò),如果沒(méi)有定義失敗
		if (!file_exists($this->path)) {
			$this->setOption('errorNo',-1);
			return false;
		}
	
		//目錄權(quán)限檢測(cè)
		if (!$this->checkPath()) {
			$this->setOption('errorNo',-2);
			return false;
			
		}
		
		
		//獲得$_FILES當(dāng)中五個(gè)基本信息
		$name = $_FILES[$field]['name'];
		$size = $_FILES[$field]['size'];
		$type = $_FILES[$field]['type'];
		$tmpName = $_FILES[$field]['tmp_name'];
		$error = $_FILES[$field]['error'];
		
		//傳入到一個(gè)成員方法里面進(jìn)行設(shè)置
		if (!$this->setFiles($name,$size,$type,$tmpName,$error)) {
			return false;
		}
		
		//檢測(cè)MIME是否合法,檢測(cè)后綴是否合法,檢測(cè)文件大小是否超過(guò)了自定義的大小
		if (!$this->checkMime() || !$this->checkSubfix() || !$this->checkSize()) {
			return false;
		}
		
		//新名
		$this->newname = $this->getNewName();
	
		//新路徑處理
		$this->newpath = $this->getNewPath();
	
		//是否是上傳文件
		//如果是上傳文件移動(dòng)上傳文件至指定的目錄
		//如果成員return true
		return $this->move();
	
	}
	
	protected function move()
	{
		if (!is_uploaded_file($this->tmpfile)) {
			$this->setOption('errorNo',-6);
			return false;
		}
		
		if (move_uploaded_file($this->tmpfile,$this->newpath.$this->newname)) {
			return true;
		} else {
			$this->setOption('errorNo',-7);
			return false;
		}
		
	}
	
	protected function getNewPath()
	{
		$this->path = rtrim($this->path,'/').'/';
		
		if ($this->isdatepath) {
			$newpath = $this->path.date('Y/m/d/');
			if (!file_exists($newpath)) {
				mkdir($newpath,0755,true);
			}
			return $newpath;
		} else {
			return $this->path;
		}
		
	}
	
	protected function getNewName()
	{
		if ($this->israndname) {
			return $this->prefix . uniqid() . '.' . $this->subfix;
		} else {
			return $this->prefix . $this->orgname;
		}
	}
	
	protected function checkSize()
	{
		if ($this->size > $this->allowsize) {
		
			$this->setOption('errorNo',-5);
			return false;
		} else {
			
			return true;
		}
		
	}
	
	protected function checkSubFix()
	{
	
		if (in_array($this->subfix,$this->allowsubfix)) {
		
			return true;
		} else {
			
			$this->setOption('errorNo',-4);
			return false;
		}
	}
	
	protected function checkMime()
	{
		if (in_array($this->mime,$this->allowmime)) {
			
			return true;
		} else {
			
			$this->setOption('errorNo',-3);
			return false;
		}
		
	}
	
	
	protected function setFiles($name,$size,$type,$tmpName,$error) {
		//1 2 3 4 6 7  0(正常)
		if ($error) {
			$this->setOption('errorNo',$error);
			return false;
		}
		
		$this->orgname = $name;
		$this->size = $size;
		$this->tmpfile = $tmpName;
		$this->mime = $type;
		
		//后綴沒(méi)處理
		$info = pathinfo($name);
		$this->subfix = $info['extension'];
		
		return true;
		/*
		$arr = explode('.',$name);
		$this->subfix = array_pop($arr);
		
		
		$arr = explode('.',$name);
		$this->subfix = $arr[count($arr)-1];
		
		$pos = strrpos($name,'.');
		echo substr($name,$pos + 1);
		*/
	}
	
	protected function checkPath()
	{
		//檢測(cè)路徑是否是目錄,如果不存在創(chuàng)建
		if (!is_dir($this->path)) {
			return mkdir($this->path,0755,true);
		}
		//檢測(cè)路徑是否可寫(xiě),如果不寫(xiě)寫(xiě)更改權(quán)限
		if (!is_writeable($this->path) ||  !is_readable($this->path)) {
			return chmod($this->path,0755);
		}
		return true;
	}
	
	protected function getErrorInfo()
	{
		switch ($this->errorno) {
			case 1:
				$str = '上傳的文件超過(guò)了 php.ini 中 upload_max_filesize 選項(xiàng)限制的值';
				break;
			case 2:
				$str = '上傳文件的大小超過(guò)了 HTML 表單中 MAX_FILE_SIZE 選項(xiàng)指定的值';
				break;
			case 3:
				$str = '部份件被上傳';
				break;
			case 4:
				$str = '沒(méi)有文件被上傳';
				break;
			case 6:
				$str = '找不到臨時(shí)文件夾';
				break;
			case 7:
				$str = '臨時(shí)文件寫(xiě)入失敗';
				break;
			case -1:
				$str = '自定義的上傳路徑不存在';
				break;
			case -2:
				$str = '沒(méi)有權(quán)限';
				break;
			case -3:
			case -4:
				$str = '類(lèi)型或后綴不準(zhǔn)許';
				break;
			case -5:
				$str = '超過(guò)了自定義的大小';
				break;
			case -6:
				$str = '不是上傳文件';
				break;
			case -7:
				$str = '移動(dòng)上傳文件失敗';
				break;
			
		}
		return $str;
	}
	
	public function __get($key)
	{
		if (in_array($key, ['newpath','newname','errorno','size'])) {
			return $this->$key;
		} else if ($key == 'errorinfo') {
			return $this->getErrorInfo();
		}
	}
}


//調(diào)用:

$upload = new Upload();

$result = $upload->uploadFile('f');

var_dump($result);

文章題目:PHP中面向?qū)ο蟮奈募蟼黝?lèi)
瀏覽地址:http://weahome.cn/article/jseggh.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部