当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP zip_entry_open()用法及代码示例


zip_entry_open()函数是PHP中的内置函数,用于打开zip条目存档以供阅读。使用zip_entry_open函数在zip存档中打开文件或目录会创建一个新的流,并在该流与Zip存档中的文件或目录之间建立连接。要打开的zip资源和zip条目资源,并将其作为参数发送给zip_entry_open()函数,成功时返回True,失败时返回False。

用法:

bool zip_entry_open( $zip, $zip_entry, $mode )

参数:此函数接受上述和以下所述的三个参数:


  • $zip:它是必填参数,用于指定要读取的zip资源。
  • $zip_entry:它是必填参数,用于指定zip条目资源。
  • $mode:这是一个可选参数,是zip归档文件所需的访问类型。

返回值:成功返回True,失败返回False。

错误和异常:

  • 如果zip存档无效,则zip_entry_open()函数将返回ER_OPEN错误。
  • 如果zip存档为空,则zip_entry_open()函数返回ER_NOZIP错误。

以下示例程序旨在说明PHP中的zip_entry_open()函数:

程序1:

Suppose a zip file articles.zip contains the following file:
geeks.txt

<?php 
  
// Opening a zip file 
$zip_handle = zip_open("C:/xampp/htdocs/articles.zip"); 
$zip_entry = zip_read($zip_handle); 
  
// Opening a zip entry archive  
zip_entry_open($zip_handle, $zip_entry, "rb"); 
$file = zip_entry_name($zip_entry); 
  
if($file == true) 
    echo("Zip file:" . $file . " open successfully <br>"); 
// Closing a zip entry archive  
$flag = zip_entry_close($zip_entry); 
if ($flag == true)  
    echo("Zip file:" . $file . " closed successfully"); 
else
    echo("Zip file:" . $file . " cannot be closed"); 
  
// Closeing zip file 
zip_close($zip_handle); 
?>

输出:

Zip file:articles/geeks open successfully 
Zip file:articles/geeks closed successfully

程序2:

Suppose a zip file articles.zip contains the following files:
geeks.txt
geeks1.txt

<?php 
  
// Opening a zip file 
$zip_handle = zip_open("C:/xampp/htdocs/articles.zip"); 
  
if(is_resource($zip_handle))  
{  
    while($zip_entry = zip_read($zip_handle))  
    {  
    
        // Opening a zip archive entry 
        $file = zip_entry_open($zip_handle, $zip_entry, "rb"); 
        $file_name = zip_entry_name($zip_entry); 
          
        if ($file == true)  
        {  
            echo("Zip file:" . $file_name . " open successfully"); 
            echo "<br>" ;  
    
            // Closing a zip archive entry 
            $flag = zip_entry_close($zip_entry); 
              
            if ($flag == true)  
                  echo("Zip file:" . $file_name . 
                      " closed successfully <br><br>"); 
            else
                echo("Zip file:" . $file_name .  
                         " cannot be closed <br><br>"); 
        }  
        else
            echo("Zip Entry Cannot be opened.<br>"); 
    }  
    
    // Closing a zip archive 
    zip_close($zip_handle); 
} 
else
    echo("Failed to Open" . $zip_handle ); 
?>

输出:

Zip file:articles/geeks open successfully
Zip file:articles/geeks closed successfully 

Zip file:articles/geeks1 open successfully
Zip file:articles/geeks1 closed successfully

相关文章:

参考: http://php.net/manual/en/function.zip-entry-open.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | zip_entry_open() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。