This article mainly shares a PHP class for uploading images. The calling method is attached in the article. Interested friends can refer to
Calling method:
<?php header("Content-Type:text/html; charset=utf-8"); //类的实例化: include("uppoo.php");//类的文件名是upoop.php $up=newupphoto; $submit=$_POST['submit']; if($submit=="上传"){ $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: <form action="upphoto.php?action=act" method="post" enctype="multipart/form-data"> 图片来源:<input type="file" name="photo"> <input type="submit" name="submit" value="上传">
Upload class , save the file name as uppoo.php:
<?php class upphoto{ public $previewsize=0.125 ; //预览图片比例 public $preview=0; //是否生成预览,是为1,否为0 public $datetime; //随机数 public $ph_name; //上传图片文件名 public $ph_tmp_name; //图片临时文件名 public $ph_path="./userimg/"; //上传文件存放路径 public $ph_type; //图片类型 public $ph_size; //图片大小 public $imgsize; //上传图片尺寸,用于判断显示比例 public $al_ph_type=array('image/jpg','image/jpeg','image/png','image/pjpeg','image/gif','image/bmp','image/x-png'); //允许上传图片类型 public $al_ph_size=1000000; //允许上传文件大小 function __construct(){ $this->set_datatime(); } function set_datatime(){ $this->datetime=date("YmdHis"); } //获取文件类型 function get_ph_type($phtype){ $this->ph_type=$phtype; } //获取文件大小 function get_ph_size($phsize){ $this->ph_size=$phsize."<br>"; } //获取上传临时文件名 function get_ph_tmpname($tmp_name){ $this->ph_tmp_name=$tmp_name; $this->imgsize=getimagesize($tmp_name); } //获取原文件名 function get_ph_name($phname){ $this->ph_name=$this->ph_path.$this->datetime.strrchr($phname,"."); //strrchr获取文件的点最后一次出现的位置 //$this->ph_name=$this->datetime.strrchr($phname,"."); //strrchr获取文件的点最后一次出现的位置 return $this->ph_name; } // 判断上传文件存放目录 function check_path(){ if(!file_exists($this->ph_path)){ mkdir($this->ph_path); } } //判断上传文件是否超过允许大小 function check_size(){ if($this->ph_size>$this->al_ph_size){ $this->showerror("上传图片超过2000KB"); } } //判断文件类型 function check_type(){ if(!in_array($this->ph_type,$this->al_ph_type)){ $this->showerror("上传图片类型错误"); } } //上传图片 function up_photo(){ if(!move_uploaded_file($this->ph_tmp_name,$this->ph_name)){ $this->showerror("上传文件出错"); } } //图片预览 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("<img src=\"{$this- alt="PHP image upload class and calling method" >ph_name}\" width=\"{$this->imgsize['0']}\" height=\"{$this->imgsize['1']}\">"); } } //错误提示 function showerror($errorstr){ echo "<script language=java script>alert('$errorstr');location='java script:history.go(-1);';</script>"; exit(); } function save(){ $this->check_path(); $this->check_size(); $this->check_type(); $this->up_photo(); $this->showphoto(); } } ?>
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
PHP generates the request signature required for Tencent Cloud COS interface
Algorithm example of PHP converting URL into short URL Share
PHP implements the method of writing PDO classes based on the singleton mode
The above is the detailed content of PHP image upload class and calling method. For more information, please follow other related articles on the PHP Chinese website!

DependencyinjectioninPHPisadesignpatternthatenhancesflexibility,testability,andmaintainabilitybyprovidingexternaldependenciestoclasses.Itallowsforloosecoupling,easiertestingthroughmocking,andmodulardesign,butrequirescarefulstructuringtoavoidover-inje

PHP performance optimization can be achieved through the following steps: 1) use require_once or include_once on the top of the script to reduce the number of file loads; 2) use preprocessing statements and batch processing to reduce the number of database queries; 3) configure OPcache for opcode cache; 4) enable and configure PHP-FPM optimization process management; 5) use CDN to distribute static resources; 6) use Xdebug or Blackfire for code performance analysis; 7) select efficient data structures such as arrays; 8) write modular code for optimization execution.

OpcodecachingsignificantlyimprovesPHPperformancebycachingcompiledcode,reducingserverloadandresponsetimes.1)ItstorescompiledPHPcodeinmemory,bypassingparsingandcompiling.2)UseOPcachebysettingparametersinphp.ini,likememoryconsumptionandscriptlimits.3)Ad

Dependency injection provides object dependencies through external injection in PHP, improving the maintainability and flexibility of the code. Its implementation methods include: 1. Constructor injection, 2. Set value injection, 3. Interface injection. Using dependency injection can decouple, improve testability and flexibility, but attention should be paid to the possibility of increasing complexity and performance overhead.

Implementing dependency injection (DI) in PHP can be done by manual injection or using DI containers. 1) Manual injection passes dependencies through constructors, such as the UserService class injecting Logger. 2) Use DI containers to automatically manage dependencies, such as the Container class to manage Logger and UserService. Implementing DI can improve code flexibility and testability, but you need to pay attention to traps such as overinjection and service locator anti-mode.

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1
Powerful PHP integrated development environment
