Save list of pdf file into zip and download it

时间:2017-07-12 07:58:11

标签: php codeigniter

I'm want to download a list of file pdf into an zip file. But when i download it the file pdf inside the zip have size 0kb. i will post the code below.

    $this->load->library('zip');

    foreach ($candidati as $candidato)
    {
        if($candidato->CV_candidato){
            $file = $nome . '/' . $candidato->CV_candidato;
            $this->zip->add_data($file);
        }
    }
    $this->zip->download($nome . '.zip');

Some suggestion? Thank you for your time.

0 个答案:

没有答案