This article will talk about some tips for PHP file upload back-end processing!
Business Scenario 1, we will only select a single file to upload, and there is no need to do any immediate verification work. Then, maybe there is no optimization at all, because in the end, all you have to do is to put this file in the form and submit it together, and then process it directly!
Business Scenario 2. Multiple files need to be uploaded, and the internal content of the files needs to be verified from time to time and displayed on the corresponding page. In this case, after the user chooses to upload the file, we need to upload the file immediately, because we need to read the information in the file, and when submitting at the end, we also need to submit the file once. Obviously, there is a repetitive upload task here. One consumes user time, and the other consumes server bandwidth resources! Optimization, the conceivable method is also very simple. After uploading the file for the first time, can the file be kept on the server, and when the form is actually submitted, just read the uploaded temporary file. Yes, this is our approach!
Business scenario three is similar to scenario two. Multiple files need to be uploaded, but multiple files may be uploaded separately. That is, we may have uploaded 10M for the first time, 10M for the second time, and uploaded 10 times in total. Then, on the server side, the one-time submission must have exceeded the upload size limit, but if we are It is possible to upload each time, and when submitting, we only need to upload a short text message!
The idea is indeed simple, and there seems to be no problem. However, maybe my ability is limited, and it really took me a lot of time to deal with this! Below, I will give some sample code for reference:
File upload technique (exist a single uploaded file as a temporary file on the server side) Sample code:
1. Page js processing
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
2. Obviously, the page needs to obtain file information and background processing code (PHP)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|
3. By combining the two parts of code, we already have the correct information on the page. We only need to do not submit the file to the server when submitting the form at the end. When processing on the server side, we only need to Just move the uploaded temporary file and you're done!
$('.upload-file-real').attr('disabled', 'disabled'); //Disable uploading files before submitting the form
4. Follow-up work
After uploading the temporary file to the server, there is no way to judge whether the user cancels the current operation. If canceled, the temporary file will always exist on the server. Therefore, we need a script to clean up the temporary directory regularly. Of course, this is very simple. You only need to find this directory and compare the time. For example, files older than one day will be deleted. Just pay attention to controlling the frequency of cleaning!
5. Digression
Log is really important. Where something went wrong, where a file was deleted, where the database was cleaned, be sure to record it!
Upload files to the temporary directory of the server. The back-end processing principle seems very simple, but it also requires you to debug it carefully. At least when I was doing this small function, it took a lot of effort to figure it out!
The above is the entire content of this article. I hope you can master the back-end processing skills of php file upload. Thank you for reading.