色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

服務器端解壓縮zip的腳本

復制代碼 代碼如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
<title>文件解壓縮管理</title>  
</head>  
<body>  
<?php  
// In php versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead  
// of $_FILES.  
if (isset($_POST["Submit"])) {  
   echo "FileName:     " . $_POST['unpackfile'] . "<br />/n";  
   echo "UnpackPath:   " . $_POST['unpackpath'] . "<br />/n";  
   $zip = zip_open($_POST['unpackfile']);  
   if ($zip) {  
      while ($zip_entry = zip_read($zip)) {  
         echo "Name:               " . zip_entry_name($zip_entry) . "<br />/n";  
         echo "Actual Filesize:    " . zip_entry_filesize($zip_entry) . "<br />/n";  
         echo "Compressed Size:    " . zip_entry_compressedsize($zip_entry) . "<br />/n";  
         echo "Compression Method: " . zip_entry_compressionmethod($zip_entry) . "<br />/n";  

         if (zip_entry_open($zip, $zip_entry, "r")) {  
            $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));   // File content  
            echo "step 1 successful!<br />/n";  
            if(zip_entry_filesize($zip_entry)!=0) {  
               $fp = fopen($_POST['unpackpath']."/".zip_entry_name($zip_entry), 'wb');  
               fwrite($fp, $buf);  
               fclose($fp);  
               zip_entry_close($zip_entry);  
               echo "unpack successful!<br />/n";  
            } else {  
               mkdir($_POST['unpackpath']."/".zip_entry_name($zip_entry), 0777);  
               echo "mkdir successful!<br />/n";  
            }  
         }  
         echo "<br><br>/n/n";  
      }  
      zip_close($zip);  
   }  
?>  
</body>  
</html>  
<?php  
exit();  
}  
?>  
<form id="form1" name="form1" enctype="multipart/form-data" method="post" action="<?=$_SERVER['php_SELF']?>">  
  待解壓文件<input type="text" name="unpackfile" />  
  解壓縮路徑<input type="text" name="unpackpath" />  
  <input type="submit" name="Submit" value="解壓" />  
</form>  
</body>  
</html> 

php技術服務器端解壓縮zip的腳本,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 清远市| 苍山县| 赣榆县| 公主岭市| 尼勒克县| 牡丹江市| 晋中市| 兴城市| 惠来县| 彭山县| 高雄市| 鱼台县| 正宁县| 西华县| 万山特区| 边坝县| 杭锦旗| 大同市| 修文县| 竹溪县| 井陉县| 正宁县| 绥德县| 芜湖市| 涟源市| 凯里市| 文水县| 阜城县| 德钦县| 眉山市| 泌阳县| 菏泽市| 宜春市| 驻马店市| 越西县| 平昌县| 沁水县| 定西市| 宝兴县| 朝阳市| 揭阳市|