php編寫功能強大上傳圖片的類_PHP教程

來源:互聯網
上載者:User
  1. class upphoto{
  2. public $previewsize=0.125 ; //預覽圖片比例
  3. public $preview=0; //是否產生預覽,是為1,否為0
  4. public $datetime; //隨機數
  5. public $ph_name; //上傳圖片檔案名稱
  6. public $ph_tmp_name; //圖片臨時檔案名稱
  7. public $ph_path="../userimg/"; //上傳檔案存放路徑
  8. public $ph_type; //圖片類型
  9. public $ph_size; //圖片大小
  10. public $imgsize; //上傳圖片尺寸,用於判斷顯示比例
  11. public $al_ph_type=array(image/jpg,image/jpeg,image/png,image/pjpeg,image/gif,image/bmp,image/x-png); //允許上傳圖片類型
  12. public $al_ph_size=1000000; //允許上傳檔案大小
  13. function __construct(){
  14. $this->set_datatime();
  15. }
  16. function set_datatime(){
  17. $this->datetime=date("YmdHis");
  18. }
  19. //擷取檔案類型
  20. function get_ph_type($phtype){
  21. $this->ph_type=$phtype;
  22. }
  23. //擷取檔案大小
  24. function get_ph_size($phsize){
  25. $this->ph_size=$phsize."
    ";
  26. }
  27. //擷取上傳臨時檔案名稱
  28. function get_ph_tmpname($tmp_name){
  29. $this->ph_tmp_name=$tmp_name;
  30. $this->imgsize=getimagesize($tmp_name);
  31. }
  32. //擷取原檔案名稱
  33. function get_ph_name($phname){
  34. $this->ph_name=$this->ph_path.$this->datetime.strrchr($phname,"."); //strrchr擷取檔案的點最後一次出現的位置
  35. //$this->ph_name=$this->datetime.strrchr($phname,"."); //strrchr擷取檔案的點最後一次出現的位置
  36. return $this->ph_name;
  37. }
  38. // 判斷上傳檔案存放目錄
  39. function check_path(){
  40. if(!file_exists($this->ph_path)){
  41. mkdir($this->ph_path);
  42. }
  43. }
  44. //判斷上傳檔案是否超過允許大小
  45. function check_size(){
  46. if($this->ph_size>$this->al_ph_size){
  47. $this->showerror("上傳圖片超過2000KB");
  48. }
  49. }
  50. //判斷檔案類型
  51. function check_type(){
  52. if(!in_array($this->ph_type,$this->al_ph_type)){
  53. $this->showerror("上傳圖片類型錯誤");
  54. }
  55. }
  56. //上傳圖片
  57. function up_photo(){
  58. if(!move_uploaded_file($this->ph_tmp_name,$this->ph_name)){
  59. $this->showerror("上傳檔案出錯");
  60. }
  61. }
  62. //圖片預覽
  63. function showphoto(){
  64. if($this->preview==1){
  65. if($this->imgsize[0]>2000){
  66. $this->imgsize[0]=$this->imgsize[0]*$this->previewsize;
  67. $this->imgsize[1]=$this->imgsize[1]*$this->previewsize;
  68. }
  69. echo("ph_name}" width="{$this->imgsize[0]}" height="{$this->imgsize[1]}">");
  70. }
  71. }
  72. //錯誤提示
  73. function showerror($errorstr){
  74. echo "";
  75. exit();
  76. }
  77. function save(){
  78. $this->check_path();
  79. $this->check_size();
  80. $this->check_type();
  81. $this->up_photo();
  82. $this->showphoto();
  83. }
  84. }
  85. ?>

http://www.bkjia.com/PHPjc/486216.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486216.htmlTechArticle?php class upphoto{ public $previewsize=0.125 ; //預覽圖片比例 public $preview=0; //是否產生預覽,是為1,否為0 public $datetime; //隨機數 public $ph_name; //上傳...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.