PHP zip_entry_read() 函数
示例
打开一个 ZIP 文件存档,打开目录条目以供读取,并从打开的目录条目中读取
<?php
$zip = zip_open("test.zip");
if ($zip) {
while ($zip_entry = zip_read($zip)) {
echo "<p>名称: " . zip_entry_name($zip_entry) . "<br>";
// 打开目录条目以供读取
if (zip_entry_open($zip, $zip_entry)) {
echo "文件内容:<br>";
// 读取打开的目录条目
$contents = zip_entry_read($zip_entry);
echo "$contents<br>";
zip_entry_close($zip_entry);
}
echo "</p>";
}
zip_close($zip);
}
?>
代码的输出取决于 ZIP 存档的内容
名称: ziptest.txt
文件内容
Hello World! This is a test.
名称: htmlziptest.html
文件内容Hello World!
This is a test for the zip functions in PHP.
定义和使用
zip_entry_read() 函数从打开的目录条目中读取。
语法
zip_entry_read(zip_entry, length)
参数值
参数 | 描述 |
---|---|
zip_entry | 必需。指定由 zip_read() 返回的目录条目 |
length | 可选。指定要返回的(未压缩)字节数。默认值为 1024 |
技术细节
返回值 | 读取的数据或 "" 在文件末尾。如果失败则为 FALSE |
---|---|
PHP 版本 | 4.1.0+ |
❮ PHP Zip 参考