PHP Online Decompression zip file method
This article mainly introduces the PHP online decompression zip file method, contains a more complete upload and zip decompression function, very practical value, the need for friends can refer to the next
The example in this article describes how PHP extracts zip files online. Share to everyone for your reference. The specific analysis is as follows:
In the PHP function library only found a zlib function also with compression somewhat, but I was disappointed that he did not solve the zip file, but finally let me find the solution, is through the PHP program execution function to achieve this function, because now can solve the zip file is too much, If you do not believe, you can go to the download software where to look for, categorization malleability you will not be disappointed, my words will not be wrong.
Here is the original file of the program, the upload.php code is as follows:
- 0>
-
If the file is *.zip, it will be automatically decompressed.- >
|
2 align=center>- class =iwhite>
- class =iwhite>
|
- The upsave.php code is as follows:
- The code is as follows:
-
- //Save the uploaded file
- $filename = $myfile _name;
- Copy ($myfile, $filename);
- Unlink ($myfile);
- //Determine if it is a zip file
- $expand _name=explode (., $filename);
- if ($expand _name[1] = = Zip or $expand _name[1] = = Zip)
- {
- $str =pkunzip.exe-e $filename;
- EXEC ($STR);
- Unlink ($filename);
- }
- >
The above procedures I have tested, as long as the server can be put on, but the directory to have write permissions, there is a Pkunzip.exe file to be placed in the directory.
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/980581.html www.bkjia.com true http://www.bkjia.com/PHPjc/980581.html techarticle PHP Online Decompression method of the zip file This article mainly introduces the PHP online decompression zip file method, contains a more complete upload and zip decompression function, very practical value, the need for friends ...