当前位置: 首页 > 图文教程 > 网络编程 > PHP > 服务器端解压缩zip的脚本

PHP
php SQL之where语句生成器
php 随机生成10位字符代码
PHP获取类中常量,属性,及方法列表的方法
php 动态执行带有参数的类方法
php pcntl_fork和pcntl_fork 的用法
PHP Document 代码注释规范
php error_log 函数的使用
PHP 加密与解密的斗争
对squid中refresh_pattern的一些理解和建议
一个php导出oracle库的php代码
PHP 中执行排序与 MySQL 中排序
php 保留小数点
将数组写入txt文件 var_export
php反弹shell实现代码
PHP 危险函数解释 分析
mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
Uchome1.2 1.5 代码学习 common.php
配置Apache2.2+PHP5+CakePHP1.2+MySQL5运行环境
php mssql 分页SQL语句优化 持续影响
PHP mb_convert_encoding 获取字符串编码类型实现代码

PHP 中的 服务器端解压缩zip的脚本


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 151 ::
收藏到网摘: n/a

复制代码 代码如下:
<!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>