dedecms实现自动打包文章中图片并下载
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-17 16:55:51 浏览: 评论:0
自己几年前的QQ图片网站所有的内容是直接复制上去了,这样我们现在提供了下载功能,但是当时并没有下载地址了,这样我们研究了一个可以自动当用户点击下载时再把当前文章中的图片利用ZipArchive压缩并实现下载,下面来看示例代码,代码如下:
- include("data/common.inc.php"); //加载数据库
- $conn = mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd) ;//or die(mysql_error());
- mysql_select_db($cfg_dbname,$conn);
- mysql_query("set Names '$cfg_db_language'");
- $id = intval(isset($_GET['id'])?$_GET['id']:0);
- if( $id )
- {
- $zipUrl = 'uploads/zip/'.$id.'.zip';
- if( file_exists($zipUrl) ) //判断文件是否存在
- {
- echo '<script language="javascript">location.href="'.$zipUrl.'";</script>';
- exit;
- }
- else
- {
- $sql ="select url from ".$cfg_dbprefix."uploads where arcid=$id";
- $query = mysql_query( $sql );// or die(mysql_error());
- if( mysql_num_rows( $query ) )
- {
- $array = array();
- while( $rs = mysql_fetch_array( $query ) )
- {
- $array[] = substr($rs['url'],1,strlen($rs['url'])-1);
- }
- //print_r($array);
- create_zip($array, $zipUrl, true); //在这里创建压缩文件
- echo '<script language="javascript">location.href="'.$zipUrl.'";</script>'; //创建好了再下载
- exit;
- }
- else
- {
- echo '参数错误';
- exit;
- }
- }
- }
- else
- {
- echo '参数错误';
- exit;
- }
- //查询数据表
- /*创建一个zip文件*/
- function create_zip($files = array(),$destination = '',$overwrite = false) {
- if(file_exists($destination) && !$overwrite){ //检测zip文件是否存在
- return false;
- }
- if(is_array($files)) { //检测文件是否存在
- foreach($files as $file) { //循环通过每个文件
- if(file_exists($file)) { //确定这个文件存在
- $valid_files[] = $file;
- }
- }
- }
- if(count($valid_files)) {
- $zip = new ZipArchive(); //创建zip文件
- if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true){
- return false;
- }
- foreach($valid_files as $file) { //添加文件
- $zip->addFile($file,$file);
- } //phpfensi.com
- $zip->close();
- return file_exists($destination);
- } else { //phpfensi.com
- return false;
- }
- }
前一段代码是连接dedecms数据库然后再进行根据文件ID查找数据并进行压缩了,打包好之后利用js输出就实现了下载,如果下次再下载这个文件就自动调用此文件而不再次打包查找数据库了,这样可以减少服务器负载.
Tags: dedecms图片下载 dedecms文章图片
相关文章
- ·dedecms实现自动打包文章中图片并下载(2015-11-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)