<完全なPHPのZipファイルリファレンス
定義と使用法
zip_entry_read()関数は、オープンzipアーカイブエントリの内容を取得します。
この関数は、成功したエントリの内容を返し、失敗した場合にFALSE。
構文
zip_entry_read(zip_entry,length)
パラメーター | 説明 |
---|---|
zip_entry | 必須。 (で開かれたzipエントリ読み取るためにzipエントリのリソースを指定しますzip_read() ) |
length | 任意。 バイト数を指定します(uncompressed size)返すように。 デフォルトは1024です |
例
<?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);
}
?>
コードの出力は、zipアーカイブの内容によって異なります。
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.
<完全なPHPのZipファイルリファレンス