PHP zip_entry_read() 函数
PHP 教程
· 2019-01-30 23:43:48
定义和用法
zip_entry_read() 函数从打开的 zip 档案中获取内容。
如果成功,该函数则返回项目的内容。如果失败,则返回 FALSE。
语法
zip_entry_read(zip_entry,length)
| 参数 | 描述 |
|---|---|
| zip_entry | 必需。规定要读取的 zip 项目资源(由 zip_read() 打开的 zip 项目)。 |
| length | 可选。规定返回的字节数(未压缩尺寸)。默认是 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 教程 文章: https://codercto.com/courses/l/5.html
趣学Python编程
Jason Briggs / 尹哲 / 人民邮电出版社 / 2014-3 / 45.00元
python是一款解释型、面向对象、动态数据类型的高级程序设计语言。python语法简捷而清晰,具有丰富和强大的类库,因而在各种行业中得到广泛的应用。对于初学者来讲,python是一款既容易学又相当有用的编程语言,国内外很多大学开设这款语言课程,将python作为一门编程语言学习。 《趣学python编程》是一本轻松、快速掌握python编程的入门读物。全书分为3部分,共18章。第1部分是第......一起来看看 《趣学Python编程》 这本书的介绍吧!