为什么上传图片中含有透明通道,图片就会变成黑色?
p.s. 改的图片上传类原文地址:http://blog.csdn.net/a957651480/article/details/23124257
<?php <br /><br>class Images{<br><br> var $inputName; //控件名<br> var $allowType = array(<br> 'image/gif','image/jpg','image/jpeg','image/png','image/x-png','image/pjpeg'<br> ); //上传类型<br> var $allowSize = 1048576; //限制大小<br> var $saveDir = ""; //保存目录<br> var $FileName = ""; //文件名<br> var $isRename = false; //是否重命名,默认为true<br> var $errID = 0; //错误代码,默认为0<br> var $errMsg = ""; //错误信息<br> var $savePath = ""; //保存路径<br> var $ImgSize = 0; //图片尺寸<br><br> function __construct($inputName,$allowType="",$allowSize="",$saveDir="",$isRename=true){<br> if(empty($inputName)){<br> $this->chk_err(-1); //无传入控件名<br> }else{<br> $this->inputName = $inputName;<br> }<br><br> if(!empty($allowType)) $this->allowType = $allowType;<br> if(!empty($allowSize)) $this->allowSize = $allowSize;<br> if(!empty($saveDir)) $this->saveDir = $saveDir;<br> if(!empty($isRename)) $this->isRename = $isRename;<br> }<br><br> function is_uploaded(){<br> if(empty($_FILES[$this->inputName]['name'])){<br> $this->chk_err(4); //没有文件被上传<br> }else{<br> if(is_uploaded_file($_FILES[$this->inputName]['tmp_name'])){<br> return true;<br> }else{<br> $this->chk_err(-2); //文件上传不合法<br> }<br> }<br> }<br><br> function chk_type(){<br> if(!in_array($_FILES[$this->inputName]['type'],$this->allowType)){<br> $this->chk_err(-3); //上传的文件类型不被允许<br> }else{<br> return true;<br> }<br> }<br><br> function chk_size(){<br> if($_FILES[$this->inputName]['size'] > $this->allowSize){<br> $this->chk_err(-4); //上传的文件过大<br> }else{<br> return true;<br> }<br> }<br><br> function move_uploaded(){ //移动上传文件<br> if(!$this->is_uploaded()){<br> return false;<br> }<br><br> if(!$this->chk_size()){<br> return false;<br> }<br><br> if(!$this->chk_type()){<br> return false;<br> }<br><br> //重命名<br> if($this->isRename){<br> $arrTmp = pathinfo($_FILES[$this->inputName]['name']);<br> $extension = strtolower($arrTmp['extension']);<br> $file_newname = $this->FileName; //重命名新文件<br> }else{<br> $file_newname = $_FILES[$this->inputName]['name'];<br> }<br> <br> if(!file_exists($this->saveDir)){ //判断保存目录是否存在<br> mkdir($this->saveDir,0777,true); //建立保存目录<br> }<br><br> //移动文件<br> $result = move_uploaded_file($_FILES[$this->inputName]['tmp_name'],$this->saveDir."/".$file_newname);<br><br> if($result){<br> $path = $this->savePath = $this->saveDir."/".$file_newname; //文件的成功保存路径<br> return $path;<br> }else{<br> $this->chk_err($_FILES[$this->inputName]['error']);<br> }<br> <br> }<br><br> //判断出错信息<br> function chk_err($errID){<br> $this->errID = $errID;<br><br> switch($this->errID){<br> case -4:<br> $this->errMsg = '只能上传1M以内的图片 | <a>[返回]</a>';<br> break;<br> case -3:<br> $this->errMsg = '这不是一张图片 | <a>[返回]</a>';<br> break;<br> case -2:<br> $this->errMsg = '文件上传不合法 | <a>[返回]</a>';<br> break;<br> case -1:<br> $this->errMsg = '无控件名传入 | <a>[返回]</a>';<br> break;<br> case 1:<br> $this->errMsg = '上传的文件超出了php.ini中upload_max_filesize设定的最大值 | <a>[返回]</a>';<br> break;<br> case 2:<br> $this->errMsg = '上传文件的大小超过了HTML表单中MAX_FILE_SIZE选项指定的值 | <a>[返回]</a>';<br> break;<br> case 3:<br> $this->errMsg = '文件只有部分被上传 | <a>[返回]</a>';<br> break;<br> case 4:<br> $this->errMsg = '请选择一张图片 | <a>[返回]</a>';<br> break;<br> default:<br> break;<br> }<br> return false;<br> <br> }<br><br> function get_errMsg(){<div class="clear"> </div>

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


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

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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),

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool