zip_close
Close the ZIP file.
zip_close()
function closes the zip archive file opened by zip_open()
function.
<?php $zip = zip_open ( "test.zip" ) ; zip_read ( $zip ) ; // Some code... zip_close ( $zip ) ; ?>
zip_close ( zip )
parameter | describe |
---|---|
zip | Required. Specifies the zip resource to be closed (the zip file opened by zip_open()). |