Php decompress the ZIP file instance code online. I found only a ZLIB function in the PHP function library and it is related to compression, but I am disappointed that he could not solve the ZIP file (ah .... I had to give up. don't say I have no perseverance. in the PHP function library, I only found a ZLIB function and it has something to do with compression, but I was disappointed that he could not parse the ZIP file (ah .... I had to give up. don't say I have no perseverance !!!). But as the saying goes: Do it mean you have to pay for it!
Only ZLIB functions found in the PHP function library are related to compression, but I am disappointed that he could not solve it.ZIP File(Ah .... I had to give up. don't say I have no perseverance !!!). But as the saying goes: Do it mean you have to pay for it! Finally, let me find the solution, that is, to implement this function through the PHP program execution function, because there are too many things that can solve ZIP files now (if you do not believe it, you can go to the place where you have downloaded the software to find it, so you will not be disappointed, and I will not be wrong ).
The following is the original file of the program:
# Upload. php Tutorial
If the file is *. ZIP, it will be automatically decompressed.
|
|
// Upsave. php
// Save the uploaded file
$ Filename = "$ MyFile_name ";
Copy ($ MyFile, "$ filename ");
Unlink ($ MyFile );
// Determine whether the file 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 );
}
?>
I have tested the above programs. you only need to put them on the server, but the directory must have the write permission. There is anotherPkunzip.exeThe file must also be placed in this directory, which is already in the compressed package.
Else (ah .... I had to give up. don't say I have no perseverance...