Computer >> Máy Tính >  >> Lập trình >> PHP

Hàm zip_entry_open () trong PHP

Hàm zip_entry_open () được sử dụng để mở mục nhập lưu trữ zip để đọc.

Cú pháp

zip_entry_open(zip_file,zip_entry,mode)

Tham số

  • zip_file - Tệp zip để đọc

  • zip_entry - Mục nhập zip để mở.

  • chế độ - Loại quyền truy cập cần thiết cho lưu trữ zip

Quay lại

Hàm zip_entry_open () Trả về TRUE khi thành công hoặc FALSE nếu thất bại.

Ví dụ

<?php
   $zip_file = zip_open("new.zip");
   $zip_entry = zip_read($zip_file);
   zip_entry_open($zip_file, $zip_entry, "rb");
   $myfile = zip_entry_name($zip_entry);
   if($myfile == true)
   echo("Zip file: " . $file . " is opened now!<br>");
   $flag = zip_entry_close($zip_entry);
   if ($flag == true)
   echo("$file . " closed!");
   zip_close($zip_file);
?>

Đầu ra

new/one is opened now!
new/one closed!