0

我正在尝试用我的数据库中的一些文件制作一个 zip,在打包之前我只是做了一些其他的事情,我实际上将文件读取到另一台服务器并将它们写入同一个文件夹以进行打包,但出于某种原因我下载的 zip 文件无效。

我实际上看到了与此问题相关的答案,但它们并没有帮助我。这是我的脚本:

<?php 
include_once('..databaseconnection');
include_once('..databaseconnection');

function noticiaZip($idNoticia)
{
    //Utilizo el idTarea para traer las tareas del post correspondiente

    sql="Query->";

    $result = mysql_query($sql);
    $arrgArch = array();
    while ($row = mysql_fetch_array($result)) {
        $arrgArch[] = array('Archivo' =>$row['link'], 
                            'Nombre'=>utf8_encode($row['Nombre']),
                            'Titulo'=>utf8_encode($row['Titulo']) 
                            );
    }
    $zip = new ZipArchive();

    $filename = 'example.zip';

    if($zip->open($filename, ZipArchive::CREATE)===true) {
        foreach ($arrgArch as  $value) {

            //Divido el url para poder rescatar el nombre del archivo
            $nameFile = explode('/', $value['Archivo']);
            $count = count($nameFile);
            $name = $count - 1;

            //Url con el code para los espacios y que me acepte realizar el stream
            $url = str_replace($nameFile[$name], rawurlencode($nameFile[$name]), $value['Archivo']);
            $source =$url;

            $destination = $nameFile[$name];

            $data = file_get_contents($source);

            $handle = fopen($destination, "w+");
            $noticias = fopen("noticia.doc", "w+");

            fwrite($handle, $data);
            fclose($handle);

            $verNoticia=traeNoticiaN($idNoticia);

            foreach($verNoticia as $k => $v){
                fwrite($noticias, "Título:\n".$v['Titulo']."\n\n\n");
                fwrite($noticias, "Título:\n".$v['value']."\n\n\n");
                fwrite($noticias, "Título:\n".$v['value']."\n\n\n");
                fwrite($noticias, "Título:\n\n\n".$v['value']."\n\n\n");
                fwrite($noticias, "Título:\n\n\n".$v['value']."\n\n\n");
                fwrite($noticias, "Título:\n\n".$v['value']."\n\n\n");
                fwrite($noticias, "Título:\n\n".$v['value']."\n\n\n");
                fclose($noticias);
            }
            if($value!='noticiaZip.php') {
                $zip->addFile("temp/".$destination, $destination);
                $zip->addFile("temp/noticia.doc", "noticia.doc");
            }
        }
        $zip->close();
        foreach ($arrgArch as $value) {
            $nameFile = explode('/', $value['Archivo']);
            $count = count($nameFile);
            $name = $count - 1;
            $destination = $nameFile[$name];
            unlink($destination);
            unlink("noticia.doc");
        }          
    } // Set headers
    header("Content-type: application/zip");
    header("Content-disposition: attachment; filename=".basename($filename));
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
    header("Pragma: public"); // Sin esto el IE no funciona
    header("Content-Transfer-Encoding: binary");
    header("Content-Length:".filesize($filename));

    ob_clean();
    readfile($filename);
    unlink($filename); 
    exit();
}
$noti = noticiaZip($_GET['idNoticia']);
?>
4

0 回答 0