php
header(Content-type: text/html;charset=utf-8);
error_reporting(E_ALL);
set_time_limit(0);
$zip_filename = "Test.zip";
$zip_filename = key_exists(zip, $_GET) && $_GET[zip]?$_GET[zip]:$zip_filename;
$zip_filepath = str_replace(\, /, dirname(__FILE__)) . / . $zip_filename;
if(!is_file($zip_filepath))
{
die(文件".$zip_filepath."不存在!);
}
$zip = new ZipArchive();
$rs = $zip->open($zip_filepath);
if($rs !== TRUE)
{
die(解压失败!Error Code:. $rs);
}
$zip->extractTo(./);
$zip->close();
echo $zip_filename.解
压成功!;
?>
代码很简单,不过还是研究了好大一会手册
php配置中需要zlib支持
win下就是php_zip.dll
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号