<完整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文件参考