search
HomeBackend DevelopmentPHP TutorialRevealing the Detailed Analysis of PHP Image Upload Code_PHP Tutorial

Revealing the Detailed Analysis of PHP Image Upload Code_PHP Tutorial

Jul 15, 2016 pm 01:27 PM
phpuploadintroducecodeanalyzepicturestudyWillRevealhourdetailedmeetquestion

When learning PHP, you may encounter the problem of uploading images in PHP. Here we will introduce the detailed PHP image upload code to solve this problem. I will share it with you here. The syntax of PHP is very simple. It is its simplicity that makes it the number one programming language on the Internet. You don't need to have a lot of knowledge to get started. For example, if you learn C language, you must have a good understanding of how each variable is defined, how pointers are operated, how memory is created and destroyed, etc.

Another example: when you learn Java language, you must have the foundation of object-oriented (OO), and you must know when encapsulation is needed and when inheritance is needed. , when do you need polymorphism? Why do you need to know SSH when you want to do a project? Most users of PHP may not be so particular at all. Some people like process-oriented, so you should write code in a process-oriented way; some people like object-oriented, then you should write code in an object-oriented way. . Php originated from the Internet, and it is currently the first programming language of Web2.0 on the Internet. Meeting user needs always comes first, and maintainability can be placed second for the time being. We usually say that web applications will always be beta versions, and plans are far from changing as fast.

The following is the complete PHP image upload code;

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span class="attribute">formenctype</span><span class="tag-name">formenctype</span><span>="multipart/form-data"</span><span class="attribute-value">action</span><span>=""</span><span class="attribute">method</span><span>=</span><span class="attribute-value">"post"</span><span class="tag">></span><span> </span></span><li class="">
<span></span><span class="tag"><span class="attribute">inputtype</span><span class="tag-name">inputtype</span><span>="hidden"</span><span class="attribute-value">name</span><span>="max_file_size"</span><span class="attribute">value</span><span>=</span><span class="attribute-value">"200000"</span><span class="tag">></span><span> </span></span>
</li>
<li class="alt">
<span></span><span class="tag"><span class="attribute">inputname</span><span class="tag-name">inputname</span><span>="userfile"</span><span class="attribute-value">type</span><span>="file"</span><span class="tag">></span><span>  </span></span>
</li>
<li class="">
<span></span><span class="tag"><span class="attribute">inputtype</span><span class="tag-name">inputtype</span><span>="submit"</span><span class="attribute-value">name</span><span>="submit"</span><span class="attribute">value</span><span>=</span><span class="attribute-value">"上传文件"</span><span class="tag">></span><span> </span></span>
</li>
<li class="alt">
<span></span><span class="tag"></span><span class="tag-name">form</span><span class="tag">></span><span> </span>
</li></span></li>
<li class=""><span> </span></li>
<li class="alt">
<span></span><span class="tag"></span><span class="tag-name">php</span><span> </span>
</li>
<li class="">
<span>$</span><span class="attribute">type</span><span>=</span><span class="attribute-value">array</span><span>("jpg","gif","bmp","jpeg","png");  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">uploaddir</span><span>=</span><span class="attribute-value">"./file/"</span><span>;  </span>
</li>
<li class=""><span> </span></li>
<li class="alt"><span>if(isset($_POST['submit']))  </span></li>
<li class=""><span>{  </span></li>
<li class="alt"><span>functiontexttype($name)  </span></li>
<li class=""><span>{  </span></li>
<li class="alt"><span>returnsubstr(strrchr($name,'.'),1);  </span></li>
<li class=""><span>}  </span></li>
<li class="alt"><span>if(!in_array(strtolower(texttype($_FILES['userfile']['name'])),$type))  </span></li>
<li class=""><span>{  </span></li>
<li class="alt">
<span>$</span><span class="attribute">text</span><span>=</span><span class="attribute-value">implode</span><span>(",",$type);  </span>
</li>
<li class="">
<span>echo"您只能上传以下类型文件:",$text,"</span><span class="tag"><span class="tag-name">br</span><span class="tag">></span><span>";  </span></span>
</li>
<li class="alt"><span>}  </span></li>
<li class=""><span>else  </span></li>
<li class="alt"><span>{  </span></li>
<li class="">
<span>if($_FILES['userfile']['size']</span><span class="tag"><span>="200000")  </span></span>
</li>
<li class="alt"><span>{  </span></li>
<li class="">
<span>$</span><span class="attribute">filename</span><span>=</span><span class="attribute-value">explode</span><span>(".",$_FILES['userfile']['name']);  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">time</span><span>=</span><span class="attribute-value">date</span><span>("m-d-H-i-s");  </span>
</li>
<li class=""><span>$filename[0]=$time;  </span></li>
<li class="alt">
<span>$</span><span class="attribute">name</span><span>=</span><span class="attribute-value">implode</span><span>(".",$filename);  </span>
</li>
<li class="">
<span>$</span><span class="attribute">uploadfile</span><span>=$uploaddir.$name;  </span>
</li>
<li class="alt"><span>if(move_uploaded_file($_FILES['userfile']['tmp_name'],$uploadfile))  </span></li>
<li class=""><span>{  </span></li>
<li class="alt">
<span>echo"</span><span class="tag"><span class="tag-name">center</span><span class="tag">></span><span>您的文件已经上传完毕上传图片预览:</span><span class="tag"></span><span class="tag-name">center</span><span class="tag">></span><span class="tag"><span class="tag-name">br</span><span class="tag">></span><span class="tag"><span class="tag-name">center</span><span class="tag">></span><span class="tag"><span class="attribute">imgsrc</span><span class="tag-name">imgsrc</span><span>=</span><span class="attribute-value">'$uploadfile'</span><span class="tag">></span><span class="tag"></span><span class="tag-name">center</span><span class="tag">></span><span>";  </span></span><li class="">
<span>echo"</span><span class="tag"><span class="tag-name">br</span><span class="tag">></span><span class="tag"><span class="tag-name">center</span><span class="tag">></span><span class="tag"><span class="attribute">ahref</span><span class="tag-name">ahref</span><span>=</span><span class="attribute-value">'javascrīpt:history.go(-1)'</span><span class="tag">></span><span>继续上传</span><span class="tag"></span><span class="tag-name">a</span><span class="tag">></span><span class="tag"></span><span class="tag-name">center</span><span class="tag">></span><span>";  </span></span><li class="alt"><span>}  </span></li>
<li class=""><span>else  </span></li>
<li class="alt"><span>{  </span></li>
<li class=""><span>echo"传输失败!";  </span></li>
<li class="alt"><span>}  </span></li>
<li class=""><span>}  </span></li>
<li class="alt"><span>else  </span></li>
<li class=""><span>{  </span></li>
<li class="alt"><span>echo"图片太大";  </span></li>
<li class=""><span>}  </span></li>
<li class="alt"><span>}  </span></li>
<li class=""><span>}  </span></li>
<li class="alt">
<span></span><span class="tag">?></span><span> </span>
</li></span></span>
</li></span></span></span>
</li>
</ol>

The above is the detailed PHP image upload code, I hope it will be helpful to everyone.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446552.htmlTechArticleWhen learning PHP, you may encounter problems with PHP uploading images. Here we will introduce the detailed PHP image uploading code solution I would like to share this question with you here. The syntax of php is very...
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 data can be stored in a PHP session?What data can be stored in a PHP session?May 02, 2025 am 12:17 AM

PHPsessionscanstorestrings,numbers,arrays,andobjects.1.Strings:textdatalikeusernames.2.Numbers:integersorfloatsforcounters.3.Arrays:listslikeshoppingcarts.4.Objects:complexstructuresthatareserialized.

How do you start a PHP session?How do you start a PHP session?May 02, 2025 am 12:16 AM

TostartaPHPsession,usesession_start()atthescript'sbeginning.1)Placeitbeforeanyoutputtosetthesessioncookie.2)Usesessionsforuserdatalikeloginstatusorshoppingcarts.3)RegeneratesessionIDstopreventfixationattacks.4)Considerusingadatabaseforsessionstoragei

What is session regeneration, and how does it improve security?What is session regeneration, and how does it improve security?May 02, 2025 am 12:15 AM

Session regeneration refers to generating a new session ID and invalidating the old ID when the user performs sensitive operations in case of session fixed attacks. The implementation steps include: 1. Detect sensitive operations, 2. Generate new session ID, 3. Destroy old session ID, 4. Update user-side session information.

What are some performance considerations when using PHP sessions?What are some performance considerations when using PHP sessions?May 02, 2025 am 12:11 AM

PHP sessions have a significant impact on application performance. Optimization methods include: 1. Use a database to store session data to improve response speed; 2. Reduce the use of session data and only store necessary information; 3. Use a non-blocking session processor to improve concurrency capabilities; 4. Adjust the session expiration time to balance user experience and server burden; 5. Use persistent sessions to reduce the number of data read and write times.

How do PHP sessions differ from cookies?How do PHP sessions differ from cookies?May 02, 2025 am 12:03 AM

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

How does PHP identify a user's session?How does PHP identify a user's session?May 01, 2025 am 12:23 AM

PHPidentifiesauser'ssessionusingsessioncookiesandsessionIDs.1)Whensession_start()iscalled,PHPgeneratesauniquesessionIDstoredinacookienamedPHPSESSIDontheuser'sbrowser.2)ThisIDallowsPHPtoretrievesessiondatafromtheserver.

What are some best practices for securing PHP sessions?What are some best practices for securing PHP sessions?May 01, 2025 am 12:22 AM

The security of PHP sessions can be achieved through the following measures: 1. Use session_regenerate_id() to regenerate the session ID when the user logs in or is an important operation. 2. Encrypt the transmission session ID through the HTTPS protocol. 3. Use session_save_path() to specify the secure directory to store session data and set permissions correctly.

Where are PHP session files stored by default?Where are PHP session files stored by default?May 01, 2025 am 12:15 AM

PHPsessionfilesarestoredinthedirectoryspecifiedbysession.save_path,typically/tmponUnix-likesystemsorC:\Windows\TemponWindows.Tocustomizethis:1)Usesession_save_path()tosetacustomdirectory,ensuringit'swritable;2)Verifythecustomdirectoryexistsandiswrita

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 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

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

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.