PHP zip_entry_name() 函数
PHP zip_entry_name() 函数
完整的 PHP Zip File 参考手册定义和用法
zip_entry_name() 函数返回 zip 档案的名称。
语法
zip_entry_name(zip_entry)
参数 | 描述 |
---|---|
zip_entry | 必需。规定要读取的 zip 项目资源(由 zip_read() 打开的 zip 项目)。 |
实例
<?php
$zip = zip_open("test.zip");
if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo "Name: " . zip_entry_name($zip_entry) . "<br />";
}
zip_close($zip);
}
?>
$zip = zip_open("test.zip");
if ($zip)
{
while ($zip_entry = zip_read($zip))
{
echo "Name: " . zip_entry_name($zip_entry) . "<br />";
}
zip_close($zip);
}
?>
上面的代码将输出:
Name: ziptest.txt
Name: htmlziptest.html
Name: htmlziptest.html
完整的 PHP Zip File 参考手册
相关文章
- PHP 运算符
- PHP Cookie
- PHP 过滤器
- PHP array_diff() 函数
- PHP array_fill_keys() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_reduce() 函数
- PHP array_reverse() 函数
- PHP array_search() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_unshift() 函数
- PHP compact() 函数
- PHP key() 函数
- PHP natsort() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 MySQLi 函数