PHP Zip_entry_close () function

| | | | | | | | | | | | |

👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!

Syntax:
bool zip_entry_close ($zip_entry)
Parameters:The zip_entry_close() function takes one parameter $zip_entry. This is a required parameter and specifies the zip write resource.Return Value:Returns true on success or False on failure.Errors and exceptions :
  • The zip archive to be closed must first be opened with the PHP zip_entry_open() function, otherwise the PHP zip_entry_close() function will issue a PHP warning.
  • The zip_entry_close() function returns an ER_OPEN error if the zip archive is invalid.
  • The zip_entry_close() function returns an ER_NOZIP error if the zip archive is empty.
Suppose a zip file article.zip contains the following file:
content.xlsx The following programs illustrate the zip_entry_close() function in PHP :Program 1:
// Open zip archive $zip_handle = zip_open ( "C: /xampp/htdocs/article.zip" ); $zip_entry = zip_read ( $zip_handle );
// Open zip archive zip_entry_open ( $zip_handle , $zip_entry , "rb" ); $file = zip_entry_name ( $zip_entry );
// Close zip archive $flag = zip_entry_close ( $zip_entry ); if ( $flag == true) echo ( " Zip Entry Archive: " . $file . " has been closed successfully. " ); else echo ( " Zip Entry Archive: " . $file . "cannot be closed." ); zip_close ( $zip_handle ); ?> Output:
Zip Entry Archive: article / content.xlsx has been closed successfully.
Suppose a zip file article.zip contains the following files:
content.xlsx
gfg.pdf
image.jpeg
Program 2:
// Open zip archive $zip_handle = zip_open ( "C: /xampp/htdocs/article.zip" ); if ( is_resource ( $zip_handle )) { while ( $zip_entry = zip_read ( $zip_handle )) { // Open zip post $file = zip_entry_open ( $zip_handle , $zip_entry , " rb " ); $file_name = zip_entry_name ( $zip_entry ); if ( $file == true) { echo ( "Zip Entry Archive:" . $file_name . " has been opened successfully. " . " < br > " ); // Close zip archive entry $flag = zip_entry_close ( $zip_entry ); if ( $flag == true) echo ( "Zip Entry Archive:" . $file_name . "has been closed successfully." . "< br >" ); else echo ( " Zip Entry Archive: " . $file_name . "cannot be closed." . "< br >" ); } else echo ( "Zip Entry Cannot be opened." ); } // Close zip archive zip_close ( $zip_handle ); }
else echo ( "Failed to Open" . $zip_handle ); ?>
Output:
Zip Entry Archive: article / content.xlsx has been opened successfully. Zip Entry Archive: article / content.xlsx has been closed successfully. Zip Entry Archive: article / gfg.pdf has been opened successfully. Zip Entry Archive: article / gfg.pdf has been closed successfully. Zip Entry Archive: article / image.jpeg has been opened successfully. Zip Entry Archive: article / image.jpeg has been closed successfully.
Link: http: //php.net/manual/en/function.zip-entry-close.php

👻 Read also: what is the best laptop for engineering students?

We hope this article has helped you to resolve the problem. Apart from PHP Zip_entry_close () function, check other code Python module-related topics.

Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.

By the way, this material is also available in other languages:



Anna Krasiko

Paris | 2023-04-01

http Python module is always a bit confusing 😭 PHP Zip_entry_close () function is not the only problem I encountered. I am just not quite sure it is the best method

Marie Innsbruck

Rome | 2023-04-01

Simply put and clear. Thank you for sharing. PHP Zip_entry_close () function and other issues with StackOverflow was always my weak point 😁. I am just not quite sure it is the best method

Xu Porretti

Shanghai | 2023-04-01

Thanks for explaining! I was stuck with PHP Zip_entry_close () function for some hours, finally got it done 🤗. I just hope that will not emerge anymore

Shop

Gifts for programmers

Learn programming in R: courses

$FREE
Gifts for programmers

Best Python online courses for 2022

$FREE
Gifts for programmers

Best laptop for Fortnite

$399+
Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best computer for crypto mining

$499+
Gifts for programmers

Best laptop for Sims 4

$

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically