在 php的函式庫中只找到了個zlib的函式還跟壓縮有點關係,但是使我失望的是他沒能解zip的檔案,但最後還是讓我找到了解決的方法,就是通過php的 程式執行函式來實現這個功能,因為現在能解zip檔案的東西實在是太多啦,你要是不信,可以到有下載軟體的地方找找看,保準你不會失望的,我的話不會錯的.
下面就是該程式的原檔案,upload.php程式碼如下:
<table border=0 > <form enctype=multipart/form-data action=upsave.php method=post> <tr> <td>如果是*.zip的檔案會被自動解壓縮 <input name=myfile type=file size=50> </td> </tr> <tr> <td colspan=2 align=center> <input type=submit value= 上傳 class=iwhite> <input type=reset value= 重填 class=iwhite> </td> </tr> </table> </body> </html> upsave.php程式碼如下: 程式碼如下: <?php //儲存上傳的檔案 $filename=$myfile_name; copy($myfile,$filename); unlink($myfile); //判斷是否是zip檔案 $expand_name=explode(.,$filename); if($expand_name[1] == zip or $expand_name[1] == zip) { $str=pkunzip.exe -e $filename ; exec($str); unlink($filename); } >以上的程式我已經測試過,只要放在伺服器上就可以了,但是該目錄要有寫的許可權,還有一個pkunzip.exe的檔案也要放在該目錄中.
希望本文所述對大家的php程式設計有所幫助。
評論(1)