代码拉取完成,页面将自动刷新
<?php
/*
* Krpano100 下载功能
* ============================================================================
* 技术支持:2015-2099 成都世纪川翔科技有限公司
* 官网地址: http://www.krpano100.com
* ----------------------------------------------------------------------------
* $Author: wanghao 932625974#qq.com $
* $Id: bind.php 28028 2016-06-19Z yuanjiang $
*/
define('IN_T',true);
require_once "./source/include/init.php";
$act = Common::sfilter($_REQUEST['act']);
//下载离线项目
if ($act=='project') {
$filename = Common::sfilter($_REQUEST['filename']);
$filename = str_replace('.','',$filename).'.zip';
$url = ROOT_PATH.'temp/down/'.$filename;
if (!file_exists($url)) {
die('找不到该文件');
}
createDowanload($url,$filename);
exit;
}
function createDowanload($url,$filename,$isDelete=false){
/* headers */
//设置该次请求超时时长,1800s
@ini_set("max_execution_time", "1800");
ob_clean();
header('Cache-control: private');
header("Content-type:application/x-zip-compressed");
header('Content-Length: '.filesize($url));
header('Content-Disposition:attachment; filename='.$filename);
flush();
$fh = @fopen($url, 'r');
while(!feof($fh)){
print fread($fh, 1024);
flush();
}
@fclose($fh);
if($isDelete)
unlink($url);
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。