Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: zip_entry_name - Manual
[go: Go Back, main page]

PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<zip_entry_filesizezip_entry_open" width="11" height="7"/>
view the version of this page
Last updated: Sun, 07 May 2006

zip_entry_name

(PHP 4 >= 4.1.0, PECL)

zip_entry_name -- ディレクトリエントリの名前を取得する

説明

string zip_entry_name ( resource zip_entry )

指定したディレクトリエントリの名前を返します。

パラメータ

zip_entry

zip_read()により返されたディレクトリエントリ

返り値

ディレクトリエントリの名前



add a note add a note User Contributed Notes
zip_entry_name
leandro_dealmeida at hotmail dot com
28-Sep-2002 01:21
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:

<?
$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

<zip_entry_filesizezip_entry_open" width="11" height="7"/>
 Last updated: Sun, 07 May 2006
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2006 The PHP Group
All rights reserved.
This mirror generously provided by: PacketBusiness, Inc.
Last updated: Mon Sep 4 22:22:43 2006 JST