En son web geliştirme öğreticiler
 

PHP zip_entry_read() Function


<Komple PHP Zip Dosyası Referans

Tanımı ve Kullanımı

zip_entry_read() işlevi, bir açık zip arşiv girişi içeriğini alır.

Bu işlev Başarı durumunda girişi veya YANLIŞ içeriğini döndürür.

Sözdizimi

zip_entry_read(zip_entry,length)

Parametre Açıklama
zip_entry Gereklidir. Zip giriş kaynak okumak belirtir (açıldı bir zip girişini zip_read() )
length İsteğe bağlı. Bayt sayısını belirtir (uncompressed size) dönmek için. Standart 1024

Örnek

<?php
$zip = zip_open("test.zip");

if ($zip)
  {
  while ($zip_entry = zip_read($zip))
    {
    echo "<p>";
    echo "Name: " . zip_entry_name($zip_entry) . "<br />";

    if (zip_entry_open($zip, $zip_entry))
      {
      echo "File Contents:<br/>";
      $contents = zip_entry_read($zip_entry);
      echo "$contents<br />";
      zip_entry_close($zip_entry);
      }
    echo "</p>";
  }

zip_close($zip);
}
?>

kodun çıktısı zip arşivi içeriğine bağlıdır:

Name: ziptest.txt
File Contents:
Hello World! This is a test for a the zip functions in PHP.

Name: htmlziptest.html
File Contents:

Hello World!

This is a test for a the zip functions in PHP.

<Komple PHP Zip Dosyası Referans