A simple PHP image upload class with image display code _ PHP Tutorial

Source: Internet
Author: User
A simple PHP image upload class with image display code. This is a simple PHP image upload class with image display code. it should be the simplest Upload class for uploading files. you can set the image height, width, and file size to be displayed. This is a simple PHP image upload class with image display code. it should be the simplest Upload class for uploading files. you can set the image height, width, and file size to be displayed.

This is a simplePhp Tutorial image upload classThe image display code is the simplest Upload class for uploading files. you can set the image height, width, and file size to be displayed.

Uploadimg. class. php file

Class upload
{
Var $ upload_name;
Var $ upload_tmp_address;
Var $ upload_server_name;
Var $ upload_filetype;
Var $ file_type;
Var $ file_server_address;
Var $ image_w = 900; // The width of the image to be displayed
Var $ image_h = 350; // The height of the image to be displayed
Var $ upload_file_size;
Var $ upload_must_size = 50000; // specify the size of the file to be uploaded.
Function upload_file ()
{
$ This-> upload_name = $ _ files ["file"] ["name"]; // Get the Upload file name
$ This-> upload_filetype = $ _ files ["file"] ["type"];
$ This-> upload_server_name = date ("y_m_dh_ I _s"). $ this-> upload_name;
$ This-> upload_tmp_address = $ _ files ["file"] ["tmp_name"]; // get a temporary address
$ This-> file_type = array ("image/gif", "image/pjpeg"); // type of the file that can be uploaded
$ This-> upload_file_size = $ _ files ["file"] ["size"]; // size of the uploaded file
If (in_array ($ this-> upload_filetype, $ this-> file_type ))
{If ($ this-> upload_file_size <$ this-> upload_must_size)
{
Echo ("Upload successful, thank you for your support ");
$ This-> file_server_address = "d: www. bkjia. comupload/". $ this-> upload_server_name;
Move_uploaded_file ($ this-> upload_tmp_address, $ this-> file_server_address); // remove from the temp directory
Echo ("file_server_address width = $ this-> image_w height = $ this-> image_h/>"); // display the image


}
Else
{
Echo ("The file capacity is too large ");
}
}
Else
{
Echo ("This file type is not supported. please select again ");
}

}

}


Html Upload code


Call method
Upload. php

Inlcude ('uploadimg. class. php ');

$ Dd = new upload;
$ Dd-> upload_file ();


Bytes. This is...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.