PHP zip_entry_read() 函數(shù)
PHP zip_entry_read() 函數(shù)

定義和用法
zip_entry_read() 函數(shù)從打開的 zip 檔案中獲取內(nèi)容。
如果成功,該函數(shù)則返回項(xiàng)目的內(nèi)容。如果失敗,則返回 FALSE。
語法
zip_entry_read(zip_entry,length)
參數(shù) | 描述 |
---|---|
zip_entry | 必需。規(guī)定要讀取的 zip 項(xiàng)目資源(由 zip_read() 打開的 zip 項(xiàng)目)。 |
length | 可選。規(guī)定返回的字節(jié)數(shù)(未壓縮尺寸)。默認(rèn)是 1024。 |
實(shí)例
<?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 = 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 檔案的內(nèi)容:
Name: ziptest.txt
File Contents:
Hello World! This is a test for a the zip functions in PHP.
Name: htmlziptest.html
File Contents:
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.
相關(guān)文章
- PHP 字符串
- PHP Switch 語句
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP count() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)