php四個常用類封裝

來源:互聯網
上載者:User

這4個類分別是Mysql類、 分頁類、縮圖類、上傳類。

Mysql類

<?php/** * Mysql類 */class Mysql{    private static $link = null;//資料庫連接    /**     * 私人的構造方法     */    private function __construct(){}    /**     * 串連資料庫     * @return obj 資來源物件     */    private static function conn(){        if(self::$link === null){            $cfg = require './config.php';            self::$link = new Mysqli($cfg['host'],$cfg['user'],$cfg['pwd'],$cfg['db']);            self::query("set names ".$cfg['charset']);//設定字元集        }        return self::$link;    }    /**     * 執行一條sql語句     * @param  str $SQL 查詢語句     * @return obj      結果集對象     */    public static function query($sql){        return self::conn()->query($sql);    }    /**     * 擷取多行資料     * @param  str $SQL 查詢語句     * @return arr      多行資料     */         public static function getAll($sql){        $data = array();        $res = self::query($sql);        while($row = $res->fetch_assoc()){            $data[] = $row;        }           return $data;    }    /**     * 擷取一行資料     * @param  str $row 查詢語句     * @return arr      單行資料     */     public static function getRow($row){        $res = self::query($sql);        return $res->fetch_assoc();    }    /**     * 擷取單個結果     * @param  str $SQL 查詢語句     * @return str      單個結果     */         public static function getOne($sql){        $res = self::query($sql);        $data = $res->fetch_row();        return $data[0];    }    /**     * 插入/更新資料     * @param  str $table  表名     * @param  arr $data  插入/更新的資料     * @param  str $act   insert/update     * @param  str $where 更新條件     * @return bool 插入/更新是否成功     */    public static function exec($table,$data,$act='insert',$where='0'){        //插入操作        if($act == 'insert'){            $sql = 'insert into '.$table;            $sql .= ' ('.implode(',',array_keys($data)).')';            $sql .= " values ('".implode("','",array_values($data))."')";        }else if($act == 'update'){            $sql = 'update '.$table.' set ';            foreach ($data as $k => $v) {                $sql .= $k.'='."'$v',";            }            $sql = rtrim($sql,',');            $sql .= ' where 1 and '.$where;        }        return self::query($sql);    }    /**     * 擷取最近一次插入的主索引值     * @return int 主鍵     */    public static function getLastId(){        return self::conn()->insert_id;    }    /**     * 擷取最近一次操作影響的行數     * @return int 影響的行數     */    public static function getAffectedRows(){        return self::conn()->affected_rows;    }    /**     * 關閉資料庫連接     * @return bool 是否關閉     */    public static function close(){        return self::conn()->close();    }}?>

分頁類

<?php/** * 分頁類 * @author webbc */class Page{    private $num;//總的文章數    private $cnt;//每頁顯示的文章數    private $curr;//當前的頁碼數    private $p = 'page';//分頁參數名    private $pageCnt = 5;//分欄總共顯示的頁數    private $firstRow;//每頁的第一行資料    private $pageIndex = array();//分頁資訊    /**     * 建構函式     * @param int $num 總的文章數     * @param int $cnt 每頁顯示的文章數     */    public function __construct($num,$cnt=10){        $this->num = $num;        $this->cnt = $cnt;        $this->curr = empty($_GET[$this->p]) ? 1 : intval($_GET[$this->p]);        $this->curr = $this->curr > 0 ? $this->curr : 1;        $this->firstRow   = $this->cnt * ($this->curr - 1);        $this->getPage();    }    /**     * 分頁方法     */    private function getPage(){        $page = ceil($this->num / $this->cnt);//總的頁數        $left = max(1,$this->curr - floor($this->pageCnt/2));//計算最左邊頁碼        $right = min($left + $this->pageCnt - 1 ,$page);//計算最右邊頁碼        $left = max(1,$right - ($this->pageCnt - 1));//當前頁碼往右靠,需要重新計算左邊頁面的值        for($i=$left;$i<=$right;$i++){            if($i == 1){                $index = '第1頁';            }else if($i == $page){                $index = '最後一頁';            }else{                $index = '第'.$i.'頁';            }            $_GET['page'] = $i;            $this->pageIndex[$index] = http_build_query($_GET);        }    }    /**     * 返回分頁資訊資料     * @return [type] [description]     */    public function show(){        return $this->pageIndex;    }}?>

縮圖類

<?php/** * 縮圖類 * @author webbc */class Thumb{    private $thumbWidth;//縮圖的寬    private $thumbHeight;//縮圖的高    private $thumbPath;//縮圖儲存的路徑    private $sourcePath;//原圖的路徑    private $sourceWidth;//原圖的寬度    private $sourceHeight;//原圖的高度    private $sourceType;//原圖的圖片類型    /**     * 建構函式     * @param str  $sourcePath  原圖的絕對路徑     * @param integer $thumbWidth  縮圖的寬     * @param integer $thumbHeight 縮圖的高     */    public function __construct($sourcePath,$thumbWidth=200,$thumbHeight=200){        //擷取原圖的絕對路徑        $this->sourcePath = $sourcePath;        //擷取縮圖的大小        $this->thumbWidth = $thumbWidth;        $this->thumbHeight = $thumbHeight;        $this->thumbPath = $this->getThumbPath();        //計算大圖的大小        list($this->sourceWidth,$this->sourceHeight,$this->sourceType) = getimagesize($this->sourcePath);    }    /**     * 確定縮圖儲存的路徑     * @return [type] [description]     */    private function getThumbPath(){        $ext = $this->getExt();        $filename = basename($this->sourcePath,'.'.$ext).'_thumb'.'.'.$ext;        return $thumbPath = __DIR__.'/'.$filename;    }    /**     * 擷取原圖的副檔名     * @return str 副檔名     */    private function getExt(){        return pathinfo($this->sourcePath,PATHINFO_EXTENSION);    }    /**     * 檢測原圖的副檔名是否合法,並返回相應類型     * @return  bool/str 原圖的類型     */    public function getType(){        $typeArr = array(            1 => 'gif',            2 => 'jpeg',            3 => 'png',            15 => 'wbmp'        );        if(!in_array($this->sourceType, array_keys($typeArr))){            return false;        }        return $typeArr[$this->sourceType];    }    /**     * 按照縮圖大小,計算大圖的縮放比例     * @return float 縮放比例     */    public function calculateRate(){        return min($this->thumbWidth / $this->sourceWidth,$this->thumbHeight / $this->sourceHeight);    }    /**     * 計算大圖按照縮放比例後,最終的映像大小     * @param float $rate 縮放比例     * @return arr 縮放後的圖片大小     */    public function getImageSizeByRate($rate){        $width = $this->sourceWidth * $rate;        $height = $this->sourceHeight * $rate;        return array('w'=>$width,'h'=>$height);    }    /**     * 儲存成檔案     * @return [type] [description]     */    public function saveFile($image){        $method = "image".$this->getType();        $method($image,$this->thumbPath);    }    /**     * 進行繪畫操作     * @return [type] [description]     */    public function draw(){        if(!($type = $this->getType())){            echo "檔案類型不支援";            return ;        }        //建立大圖和小圖的畫布        $method = "imagecreatefrom".$type;        $bigCanvas = $method($this->sourcePath);        $smallCanvas = imagecreatetruecolor($this->thumbWidth, $this->thumbHeight);        //建立白色畫筆,並給小圖畫布填充背景        $white = imagecolorallocate($smallCanvas, 255, 255, 255);        imagefill($smallCanvas, 0, 0, $white);        //計算大圖的縮放比例        $rate = $this->calculateRate();        //計算大圖縮放後的大小資訊        $info = $this->getImageSizeByRate($rate);        //進行縮放        imagecopyresampled($smallCanvas, $bigCanvas,            ($this->thumbWidth - $info['w']) / 2 , ($this->thumbHeight - $info['h']) / 2,             0, 0, $info['w'], $info['h'], $this->sourceWidth, $this->sourceHeight);        //儲存成檔案        $this->saveFile($smallCanvas);        //銷毀畫布        imagedestroy($bigCanvas);        imagedestroy($smallCanvas);    }}?>

上傳類

<meta charset="utf8"/><?php/** * 檔案上傳類 * @author webbc */class Upload{    private $allowExt = array('gif','jpg','jpeg','bmp','png','swf');//限制檔案上傳的尾碼名    private $maxSize = 1;//限制最大檔案上傳1M    /**     * 擷取檔案的資訊     * @param  str $flag 上傳檔案的標識     * @return arr       上傳檔案的資訊數組     */    public function getInfo($flag){        return $_FILES[$flag];    }    /**     * 擷取檔案的副檔名      * @param str $filename 檔案名稱     * @return str 副檔名     */    public function getExt($filename){        return pathinfo($filename,PATHINFO_EXTENSION);    }    /**     * 檢測副檔名是否合法     * @param str $filename 檔案名稱     * @return bool 副檔名是否合法     */    private function checkExt($filename){        $ext = $this->getExt($filename);        return in_array($ext,$this->allowExt);    }    /**     * 檢測檔案大小是否超過限制     * @param int size 檔案大小     * @return bool 檔案大小是否超過限制     */    public function checkSize($size){        return $size < $this->maxSize * 1024 * 1024;    }    /**     * 隨機的檔案名稱     * @param int $len 隨機檔案名稱的長度     * @return str 隨機字串     */    public function randName($len=6){        return substr(str_shuffle('abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ234565789'),0,$len);    }    /**     * 建立檔案上傳到的路徑     * @return str 檔案上傳的路徑     */     public function createDir(){        $dir = './upload/'.date('Y/m/d',time());        if(is_dir($dir) || mkdir($dir,0777,true)){            return $dir;        }    }    /**     * 檔案上傳     * @param str $flag 檔案上傳標識     * @return arr 檔案上傳資訊     */    public function uploadFile($flag){        if($_FILES[$flag]['name'] === '' || $_FILES[$flag]['error'] !== 0){            echo "沒有上傳檔案";            return;        }        $info = $this->getInfo($flag);        if(!$this->checkExt($info['name'])){            echo "不支援的檔案類型";            return;        }        if(!$this->checkSize($info['size'])){            echo "檔案大小超過限制";            return;        }        $filename = $this->randName().'.'.$this->getExt($info['name']);        $dir = $this->createDir();        if(!move_uploaded_file($info['tmp_name'], $dir.'/'.$filename)){            echo "檔案上傳失敗";        }else{            return array('filename'=>$filename,'dir'=>$dir);        }    }}?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.