search
HomeBackend DevelopmentPHP TutorialImage upload class_PHP tutorial

Image upload class_PHP tutorial

Jul 13, 2016 am 10:51 AM
classpublicuploadpicturemethodkindsolve




Image upload class
Solution
class upphoto{
public $previewsize=0.125; //Preview image ratio
public $preview=1; //Whether to generate a preview, 1 if yes, 0 if not
public $datetime; //random number
public $ph_name; //Upload image file name
public $ph_tmp_name; //Temporary image file name
public $ph_path="uploadimg/"; //Upload file storage path
public $ph_type; //Picture type
public $ph_size; //Picture size
public $imgsize; //Upload image size, used to determine display ratio
public $al_ph_type=array('image/jpg','image/jpeg','image/png','image/pjpeg','image/gif','image/bmp','image/xpng'); / /Allow image type to upload
public $al_ph_size=1000000; //Allow upload file size
function __construct(){
$this>set_datatime();
}
function set_datatime(){
$this>datetime=date("YmdHis");
}
//Get file type
function get_ph_type($phtype){
$this>ph_type=$phtype;
}
//Get file size
function get_ph_size($phsize){
$this>ph_size=$phsize."
";
}
//Get the upload temporary file name
function get_ph_tmpname($tmp_name){
$this>ph_tmp_name=$tmp_name;
$this>imgsize=getimagesize($tmp_name);
}
//Get the original file name
function get_ph_name($phname){
$this>ph_name=$this>ph_path.$this>datetime.$phname;
}
//Determine the directory where uploaded files are stored
function check_path(){
if(!file_exists($this>ph_path)){
mkdir($this>ph_path);
}
}
//Determine whether the uploaded file exceeds the allowed size
function check_size(){
if($this>ph_size>$this>al_ph_size){
$this>showerror("Uploaded image exceeds 2000KB");
}
}
//Determine file type
function check_type(){
if(!in_array($this>ph_type,$this>al_ph_type)){
$this>showerror("Uploaded image type is wrong");
}
}
//Upload pictures
function up_photo(){
if(!move_uploaded_file($this>ph_tmp_name,$this>ph_name)){
$this>showerror("Error uploading file");
}
}
//Picture preview
function showphoto(){
if($this>preview==1){
if($this>imgsize[0]>2000){
$this>imgsize[0]=$this>imgsize[0]*$this>previewsize;
$this>imgsize[1]=$this>imgsize[1]*$this>previewsize;
}
echo("Image upload class_PHP tutorial");
}
}
//Error message
function showerror($errorstr){
echo "";
exit();
}
function save(){
$this>check_path();
$this>check_size();
$this>check_type();
$this>up_photo();
$this>showphoto();
}
}

I am a newbie in PHP, and this is the first class I have written. If there are any shortcomings, you are welcome to criticize and correct me. Thank you very much!


D8888D’s reply content
test.php file
//Instantiation of class:
include("upoop.php");//The file name of the class is upoop.php
$up=new upphoto;
$up>get_ph_tmpname($_FILES['photo']['tmp_name']);
$up>get_ph_type($_FILES['photo']['type']);
$up>get_ph_size($_FILES['photo']['size']);
$up>get_ph_name($_FILES['photo']['name']);
$up>save();

//HTML of uploaded image:


Image source:


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632525.htmlTechArticlePicture upload class solution class upphoto{ public $previewsize=0.125; //Preview image ratio public $preview=1 ; //Whether to generate a preview, 1 if yes, 0 if not public $datetime; //Random number...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the difference between unset() and session_destroy()?What is the difference between unset() and session_destroy()?May 04, 2025 am 12:19 AM

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

What is sticky sessions (session affinity) in the context of load balancing?What is sticky sessions (session affinity) in the context of load balancing?May 04, 2025 am 12:16 AM

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

What are the different session save handlers available in PHP?What are the different session save handlers available in PHP?May 04, 2025 am 12:14 AM

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

What is a session in PHP, and why are they used?What is a session in PHP, and why are they used?May 04, 2025 am 12:12 AM

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

Explain the lifecycle of a PHP session.Explain the lifecycle of a PHP session.May 04, 2025 am 12:04 AM

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

What is the difference between absolute and idle session timeouts?What is the difference between absolute and idle session timeouts?May 03, 2025 am 12:21 AM

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

What steps would you take if sessions aren't working on your server?What steps would you take if sessions aren't working on your server?May 03, 2025 am 12:19 AM

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

What is the significance of the session_start() function?What is the significance of the session_start() function?May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft