php - read_dir() function is not working in codeigniter -


i want zip folder(client1) contains few pdf file , after zip folder should download. path correct fail made zip file.

any appreciated.thanks in advance

i made following code:

 function download_all_pdf(){ $this->load->library('zip'); $path = base_url().'public/pdfstore/client1'; $this->zip->read_dir($path);    $this->zip->download('client1.zip'); }  

you cannot use http:// path. yu have use local address. this

$path = 'public/pdfstore/clint1/' 

Comments