Add zip_close() and some inline docs

This commit is contained in:
Miles Lott 2003-12-03 01:18:50 +00:00
parent 9efb12491d
commit 99ea79d3b5

View File

@ -301,7 +301,7 @@
/* Open the (uploaded) zip file */
$zip = zip_open($filename);
$temp = tempnam('/tmp','zip2vcf');
$temp = tempnam('/tmp','zip2contact');
/* Open a temp file for read/write */
$fp = fopen($temp, 'w+');
@ -323,7 +323,12 @@
zip_entry_close($dirent);
}
}
/* Close the zip file resource handle */
zip_close($zip);
/* Set the file pointer of our new file to the beginning for use by the import routines */
rewind($fp);
return $fp;
}