asp 檔案上傳 php 檔案上傳類別程式碼

WBOY
發布: 2016-07-29 08:46:26
原創
765 人瀏覽過

複製程式碼 程式碼如下:


/**
* 檔案上傳類別
*/
class uploadFile {
public $max_size = '1000000';//設定上傳檔案大小
public $file_name = 'date';///重新命名方式代表以時間命名方式代表以時間命名,其他則使用給予的名稱
public $allow_types;//允許上傳的檔案副檔名,不同檔案類型以「|」隔開
public $errmsg = '';//錯誤訊息
public $uploaded = '' ;//上傳後的檔案名稱(包括檔案路徑)
public $save_path;//上傳檔案儲存路徑
private $files;//提交的等待上傳檔案
private $file_type = array();//檔案類型
private $ext = '';//上傳檔案副檔名
/**
* 建構函數,初始化類別
* @access public
* @param string $file_name 上傳後的檔案名稱
* @param string $save_path 上傳的目標資料夾
*/
public function __construct($save_path = './upload/',$file_name = 'date',$allow_types = '') {
$this->file_name = $file_name;//重新命名方式代表以時間命名,其他則使用給予的名稱
$this->save_path = (preg_match('//$/',$save_path)) ? $ save_path : $save_path . '/';
$this->allow_types = $allow_types == '' ? 'jpg|gif|png|zip|rar' : $allow_types;
}
/**
* 上傳檔案
* @access public
* @param $files 等待上傳的檔案(表單傳來的$_FILES[])
* @return boolean 返回布林值
*/
public function upload_file($files) {
$name = $files['name'];
$type = $files['type'];
$size = $files['size'];
$tmp_name = $files ['tmp_name'];
$error = $files['error'];
switch ($error) {
case 0 : $this->errmsg = '';
break;
case 1 : $this->errmsg = '超過了php.ini中檔案大小';
break;
case 2 : $this->errmsg = '超過了MAX_FILE_SIZE 選項指定的檔案大小';
break;
case 3 : $this->errmsg = '檔案只有部分上傳';
break;
case 4 : $this->errmsg = '沒有檔案上傳';
break;
case 5 : $this->errmsg = '上傳檔案大小為0';
break ;
default : $this->errmsg = '上傳檔案失敗! ';
break;
}
if($error == 0 && is_uploaded_file($tmp_name)) {
//偵測檔案類型
if($this->check_file_type($name) == FALSE){
}
//偵測檔案大小
if($size > $this->max_size){
$this->errmsg = '上傳檔案'.$name.'太大,最大支援'.ceil($this->max_size/1024).'kb的檔案';
return FALSE;
}
$this->set_save_path();//設定檔存放路徑
$new_name = $this->file_name != 'date' ? $this->file_name.'.'.$this->ext : date('YmdHis').'.'.$this->ext; //設定新檔名
$this->uploaded = $this->save_path.$new_name;//上傳後的檔案名稱
//行動檔案
if(move_uploaded_file($tmp_name,$this->uploaded)){
$this->errmsg = '檔案'.$this->uploaded.'上傳成功! ';
return TRUE;
}else{
$this->errmsg = '檔案'.$this->uploaded.'上傳失敗!';
return FALSE;
}
}
}
/**
* 檢查上傳檔案類型
* @access public
* @param string $filename 等待檢查的檔案名稱
* @return 如果檢查透過傳回TRUE 未透過則傳回FALSE和錯誤訊息
* @return 如果檢查透過傳回TRUE 未透過則傳回FALSE和錯誤訊息
*/
public function check_file_type($filename){
$ext = $this->get_file_type($filename); = $ext;
$allow_types = explode('|',$this->allow_types);//分割允許上傳的檔案副檔名為陣列
//echo $ext;
//檢查上傳檔案副檔名是否在請允許上傳的檔案副檔名中
if(in_array($ext,$allow_types)){
return TRUE;
}else{
$this->errmsg = '上傳檔案'.$filename.' 類型錯誤,只支援上傳'.str_replace('|',',',$this->allow_types).'等檔案類型!';
return FALSE;
}
}
/**
* 取得檔案類型
* @access public
* @param string $filename 要取得檔案類型的目標檔案名稱
* @return string 檔案類型
*/
public function get_file_type($filename){
$info = pathinfo($filename);
$ext = $info['extension'];
return $
$ext = $info['extension'];
return $n; }
/**
* 設定檔上傳後的儲存路徑
*/
public function set_save_path(){
$this->save_path = (preg_match('//$/',$this->save_path)) ? $this->save_path : $this ->save_path . '/';
if(!is_dir($this->save_path)){
//如果目錄不存在,建立目錄
$this->set_dir();
}
}
/**
* 建立目錄
* @access public
* @param string $dir 要建立目錄的路徑
* @return boolean 失敗時傳回錯誤訊息和FALSE
*/
public function set_dir($dir = null){
//檢查路徑是否存在
if(!$dir){
$dir = $this->save_path;
}
if(is_dir($dir) ){
$this->errmsg = '需要建立的資料夾已經存在! ';
}
$dir = explode('/', $dir);
foreach($dir as $v){
if($v){
$d .= $v . '/';
if( !is_dir($d)){
$state = mkdir($d, 0777);
if(!$state) 🎜$this->errmsg = '在建立目錄' . $d . '時出錯!';
}
}
}
return true;
}
}
/*************************************************
* 圖片處理類別
*
* 可以對圖片進行產生縮圖,打水印等操作
* 本類預設編碼為UTF8 如果要在GBK下使用請將img_mark方法中打中文字符串水印iconv註釋去掉
*
* 由於UTF8漢字和英文字母大小(像素)不好確定,在中英文混合出現太多時可能會出現字符串偏左
* 或偏右,請根據項目環境對get_mark_xy方法中的$strc_w = strlen($this- >mark_str)*7+5進
* 行調整
* 需要GD庫支持,為更好使用本類推薦使用GD庫2.0+
*
* @author kickflip@php100 QQ263340607
****** *****************************************/
class uploadImg extends uploadFile {
「publicmark_str_str. str_r = 0; //字串顏色R
public $str_g = 0; //字串顏色G
public $str_b = 0; //字串顏色B
public $mark_ttf = './upload/SIMSUN.TTC' ; //浮水印文字字型檔(包含路徑)
public $mark_logo = './upload/logo.png'; //水印圖片
public $resize_h;//產生縮圖高
public $resize_w;//產生縮略圖寬
public $source_img;//來源圖片檔案
public $dst_path = './upload/';//縮圖檔案存放目錄,不填則為來源圖片存放目錄
/**
* 產生縮圖產生後的圖
* @access public
* @param integer $w 縮小後圖片的寬(px)
* @param integer $h 縮小後圖片的高(px)
* @param string $ source_img 來源圖片(路徑+檔名)
*/
public function img_resized($w,$h,$source_img = NULL){
$source_img = $source_img == NULL ? $this->uploaded : $source_img;//取得來源檔案的位址,如果為空則預設為上次上傳的圖片
if(!is_file($source_img)) { //檢查來源圖片是否存在
$this->errmsg = '檔案'.$source_img.'不存在';
return FALSE;
}
$this ->source_img = $source_img;
$img_info = getimagesize($source_img);
$source = $this->img_create($source_img); //建立來源圖片
$this->resize_w = $w;
$-w; >resize_h = $h;
$thumb = imagecreatetruecolor($w,$h);
imagecopyresized($thumb,$source,0,0,0,0,$w,$h,$img_info[0],$img_info [1]);//產生縮寫圖片
$dst_path = $this->dst_path == '' ? $this->save_path : $this->dst_path; //取得目標資料夾路徑
$dst_path = (preg_match ('//$/',$dst_path)) ? $dst_path : $dst_path . '/';//將目標資料夾後面加上/
if(!is_dir($dst_path)) $this->set_dir($ dst_path); //如果不存在目標資料夾則建立
$dst_name = $this->set_newname($source_img);
$this->img_output($thumb,$dst_name);//輸出圖片
imagedestroy($thumb,$dst_name);//輸出圖片
imagedestroy($source );
imagedestroy($thumb);
}
/**
*打浮水印
*@access public
*@param string $source_img 來源圖片路徑+檔名
*@param integer $mark_type 水印型別(1為英文字串,2為中文字串,3為圖片logo,預設為英文字串)
*@param integer $mark_postion 水印位置(1為左下角,2為右下角,3為左上角,4為右上角,預設為右下角);
*@return 打上浮水印的圖片
*/
public function img_mark($source_img = NULL,$mark_type = 1,$mark_postion = 2) {ULL
$source ? $this->uploaded : $source_img;//取得原始檔案的位址,如果為空則預設為上次上傳的圖片
if(!is_file($source_img)) { //檢查來源圖片是否存在
$this ->errmsg = '檔案'.$source_img.'不存在';
return FALSE;
}
$this->source_img = $source_img;
$img_info = getimagesize($source_img);
img_create($source_img); //建立來源圖片
$mark_xy = $this->get_mark_xy($mark_postion);//取得浮水印位置
$mark_color = imagecolorallocate($source,$this->str_r,$this->str_g ,$this->str_b);
switch($mark_type) {
case 1 : //加上英文字串水印
$str = $this->mark_str;
imagestring($source,5,$mark_xy[0], $mark_xy[1],$str,$mark_color);
$this->img_output($source,$source_img);
break;
case 2 : //加中文字串浮水印
if(!is_file($this- >mark_ttf)) { //檢查字型檔是否存在
$this->errmsg = '打浮水印失敗:字型檔'.$this->mark_ttf.'不存在!';
return FALSE;
}
$str = $this->mark_str;
//$str = iconv('gbk','utf-8',$str);//轉換字元編碼如果使用GBK編碼請去掉此行註解
imagettftext($source,12, 0,$mark_xy[2],$mark_xy[3],$mark_color,$this->mark_ttf,$str);
$this->img_output($source,$source_img);
break;
case 3 : //加圖浮水印
if(is_file($this->mark_logo)){ //如果存在浮水印logo的圖片則取得logo圖片的基本資訊,不存在則退出
$logo_info = getimagesize($this->mark_logo);
}else{
$this->errmsg = '打浮水印失敗:logo檔案'.$this->mark_logo.'不存在! ';
return FALSE;
}
$logo_info = getimagesize($this->mark_logo);
if($logo_info[0]>$img_info[0] || $logo_info[1]>$img_info[1]) {$img_info[1]) {$img_info[1]) {$img_info[1]) {$img_info[1]) {$img_info[1])> //如果來源圖片小於logo大小則退出
$this->errmsg = '打浮水印失敗:來源圖片'.$this->source_img.'比'.$this->mark_logo.'小!';
return FALSE;
}
$logo = $this->img_create($this->mark_logo);
imagecopy ( $source, $logo, $mark_xy[4], $mark_xy[5], 0py ( $source, $logo, $mark_xy[4], $mark_xy[5], 0, 0, 0, 0 $logo_info[0], $logo_info[1]);
$this->img_output($source,$source_img);
break;
default: //其它則為文字圖片
$str = $this->mark_str;
imagestring($source,5,$mark_xy[0],$mark_xy[1],$str,$mark_color);
$this->img_output($source,$source_img);
break;
}
imagedestroy($; source);
}
/**
* 取得浮水印位置
* @access private
* @param integer $mark_postion 浮水印的位置(1為左下角,2為右下角,3為左上角,4為右上角,其它為右下角)
* @return array $mark_xy 水印位置的座標(索引0為英文字串水印座標X,索引1為英文字串水印座標Y,
* 索引2為中文字串水印座標X,索引3為中文字串水印座標Y,索引4為水印圖片座標X,索引5為浮水印圖片座標Y)
*/
private function get_mark_xy($mark_postion){
$img_info = getimagesize($this->source_img);
$img_info = getimagesize($this->source_img);
$stre_ww =strlen_$ +5 ; //水印英文字串的長度(px)(5號字的英文字元大小約為9px 為了美觀再加5px)
//(12號字的中文字元大小為12px,在utf8裡一個漢字長度為3個位元組一個位元組4px 而一個英文字元長度一個位元組大小大約為9px
// 為了在中英文混合的情況下顯示完全設它的長度為位元組數*7px)
$strc_w = strlen($this->mark_str)*7+5 ; //水印中文字串的長度(px)
if(is_file($this->mark_logo)){ //如果存在浮水印logo的圖片則取得logo圖片的基本資訊
$logo_info = getimagesize($this->mark_logo);
}
//由於imagestring函數和imagettftext函數中對於字串開始位置不同所以英文和中文字串的Y位置也有所不同
//imagestring函數是從文字的左上角為參考imagettftext函數是從文字左下角為參考
switch($mark_postion){
case 1: //位置左下角
$mark_xy[0] = 5; //水印英文字串座標X
$mark_xy[1] = $img_info[1]-20;//水印英文字串座標Y
$mark_xy[2] = 5; //水印中文字串座標X
$mark_xy[3] = $img_info[ 1]-5;//水印中文字串座標Y
$mark_xy[4] = 5;//水印圖片座標X
$mark_xy[5] = $img_info[1]-$logo_info[1]-5;/ /水印圖片座標Y
break;
case 2: //位置右下角
$mark_xy[0] = $img_info[0]-$stre_w; //水印英文字串座標X
$mark_xy[1] = $img_info [1]-20;//水印英文字串座標Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字串座標X
$mark_xy[3] = $img_info[1] -5;//水印中文字串座標Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印圖片座標X
$mark_xy[5] = $img_info[1] -$logo_info[1]-5;//浮水印圖片座標Y
break;
case 3: //位置左上角
$mark_xy[0] = 5; //水印英文字串座標X
$mark_xy[1] = 5;//水印英文字串座標Y
$mark_xy[2] = 5; //水印中文字串座標X
$mark_xy[3] = 15;//水印中文字串座標Y
$mark_xy[4 ] = 5;//浮水印圖片座標X
$mark_xy[5] = 5;//水印圖片座標Y
break;
case 4: //位置右上角
$mark_xy[0] = $img_info[0]- $stre_w; //水印英文字串座標X
$mark_xy[1] = 5;//水印英文字串座標Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字串座標X
$mark_xy[3] = 15;//水印中文字串座標Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印圖片座標X
$mark_xy[ 5] = 5;//浮水印圖片座標Y
break;
default : //其它預設為右下角
$mark_xy[0] = $img_info[0]-$stre_w; //水印英文字串座標X
$ mark_xy[1] = $img_info[1]-5;//水印英文字串座標Y
$mark_xy[2] = $img_info[0]-$strc_w; //水印中文字串座標X
$mark_xy[3 ] = $img_info[1]-15;//水印中文字串座標Y
$mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印圖片座標X
$mark_xy[5 ] = $img_info[1]-$logo_info[1]-5;//浮水印圖片座標Y
break;
}
return $mark_xy;
}
/**
* 建立來源圖片
* @access private
* @param string $source_img 來源圖片(路徑+檔案名稱)
* @return img 從目標檔案新建的圖片
*/
private function img_create($R. ) {
$info = getimagesize($source_img);
switch ($info[2]){
case 1:
if(!function_exists('imagecreatefromgif')){
$ }else{
$source = @imagecreatefromgif($source_img);
}
break;
case 2:
$source = @imagecreatefromjpeg($source_img); commomary break; );
break;
case 6:
$source = @imagecreatefromwbmp($source_img);
break;
default:
$source = FALSE;
break;
default:
$source = FALSE;
break;
default;
$source;
/**
* 重新命名圖片
* @access private
* @param string $source_img 來源圖片路徑+檔名
* @return string $dst_name 重新命名後的圖片名稱(路徑+檔名)
*/
private function set_newname($sourse_img) {
$info = pathinfo($sourse_img);
$new_name = $this->resize_w.'_'.$this->resize_h$new_name = $this->resize_w.'_'.$this->resize_h.$new_name_h.' '.$info['basename'];//將檔案名稱修改為:寬_高_檔名
if($this->dst_path == ''){ //如果存放縮圖路徑為空則預設為來源檔案同資料夾
$dst_name = str_replace($info['basename'],$new_name,$sourse_img);
}else{
$dst_name = $this->dst_path.$new_name;
$dst_name = $this->dst_path.$new_name;
}dname;
}
/**
* 輸出圖片
* @access private
* @param $im 處理後的圖片
* @param $dst_name 輸出後的圖片名稱(路徑+檔名)
* @return 輸出圖片
*/
public function img_output($im,$dst_name) {
$info = getimagesize($this->source_img);
:switch ($info[2]){
ase 11g);
if(!function_exists('imagegif')){
imagejpeg($im,$dst_name);
}else{
imagegif($im, $dst_name);
}
breakimagegif($im, $dst_name);
}
break ,$dst_name);
break;
case 3:
imagepng($im,$dst_name);
break;
case 6:
imagewbmp($im,$dst_name); break
); >


php檔案上傳類源碼打包
以上就介紹了asp 檔案上傳 php 檔案上傳類別程式碼,包括了asp 檔案上傳方面的內容,希望對PHP教學有興趣的朋友有幫助。


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板