0
Answer

How to use zip_open() function in PHP?

Ask a question
I am trying to run this code But It show warning Msg. Now give me a suggestion how it will work, Plz give me a proper solution.

<html>
<body>
<?php
$zip = zip_open("test.zip");
zip_read($zip);
echo "She is Sweet girl";
zip_close($zip);
?>
</body>
</html>

  Thanks