PHP zip_entry_name() 函數(shù)
PHP zip_entry_name() 函數(shù)

定義和用法
zip_entry_name() 函數(shù)返回 zip 檔案的名稱。
語法
zip_entry_name(zip_entry)
參數(shù) | 描述 |
---|---|
zip_entry | 必需。規(guī)定要讀取的 zip 項(xiàng)目資源(由 zip_read() 打開的 zip 項(xiàng)目)。 |
實(shí)例
<?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

相關(guān)文章
- PHP 運(yùn)算符
- PHP Cookie
- PHP 過濾器
- PHP array_diff() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP compact() 函數(shù)
- PHP key() 函數(shù)
- PHP natsort() 函數(shù)
- PHP sort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP Libxml 函數(shù)
- PHP Mail 函數(shù)
- PHP 5 MySQLi 函數(shù)