html端页面
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<a href="data.php">设备上报日志</a>
<!--<a href="test.php">设备上报日志</a>-->
</body>
</html>
php页面
<?php
//zip之压缩目录与文件
function addFileToZip($path,$zip){
$handler=opendir($path); //打开当前文件夹由$path指定。
while($filename=readdir($handler)){
if($filename != "." && $filename != ".."){//文件夹文件名字为'.'和‘..’,不要对他们进行操作
if(is_dir($path. DIRECTORY_SEPARATOR.$filename)){// 如果读取的某个对象是文件夹,则递归
addFileToZip($path. DIRECTORY_SEPARATOR.$filename, $zip);
}else{ //将文件加入zip对象
$zip->addFile($path. DIRECTORY_SEPARATOR.$filename);//该函数第二个参数是可选的,用来指定文件的名称,如果不选,则用basename()来代替
}
}
}
@closedir($path);//关闭打开的目录
}
$zip=new ZipArchive();
if($zip->open('设备上报日志.zip', ZipArchive::OVERWRITE|ZipArchive::CREATE)=== TRUE){//如果只用ZipArchive::OVERWRITE那么如果指定目标存在的话就会复写,否则返回错误9,而两个都用则会避免这个错误
addFileToZip('log', $zip); //调用方法,对要打包的根目录进行操作,并将ZipArchive的对象传递给方法,注意"\"是转移字符,"/"不是
downfile('设备上报日志.zip');
$zip->close(); //关闭处理的zip文件
}
//下载
function downfile($dirName){
$filename=realpath($dirName); //文件名
$date=date("Ymd-H:i:m");
Header( "Content-type: application/octet-stream ");
Header( "Accept-Ranges: bytes ");
Header( "Accept-Length: " .filesize($filename));
header( "Content-Disposition: attachment; filename= {$dirName}");
echo file_get_contents($filename);
readfile($filename);
}
|