©
本文档使用
php.cn手册 发布
(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PECL zip >= 1.0.0)
zip_entry_name — 检索目录项的名称
$zip_entry
)返回指定目录项的名称。
zip_entry
由函数 zip_read() 返回的目录项。
目录项的名称。
[#1] kevyn at opsone dot net [2008-11-20 07:21:40]
Big note for filename with accents.
Some Zip softwares encode accents with CP850.
So use iconv for keeping your accents SAFE !
[#2] leandro_dealmeida at hotmail dot com [2002-09-27 09:21:20]
If you want to get the real name of the file without the directory name, you can just use the function basename() as the follow:
<?php
$zip_dir = "./import/";
$zip = zip_open($zip_dir."import.zip");
if ($zip) {
while ($zip_entry = zip_read($zip)) {
$file = basename(zip_entry_name($zip_entry));
$fp = fopen($zip_dir.basename($file), "w+");
if (zip_entry_open($zip, $zip_entry, "r")) {
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
zip_entry_close($zip_entry);
}
fwrite($fp, $buf);
fclose($fp);
echo "The file ".$file." was extracted to dir ".$zip_dir."\n<br>";
}
zip_close($zip);
}
?>
Thefore you can extract files without concern with the directory that is set inside the zip source.
Remember to give write permission (w) on that directory.
Hello from Brazil.
Leandro