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


PHP ZipArchive extractTo()用法及代码示例


ZipArchive::extractTo() 函数是 PHP 中的内置函数,用于提取文件夹中的 zip 存档内容。

用法:

bool ZipArchive::extractTo(
    string $pathto, 
    array|string|null $files = null
)

参数:该函数接受两个参数,如下所述:

  • $pathto:该参数保存您想要提取存档文件的位置。
  • $files:该参数保存您要提取的文件。

返回值:该函数成功时返回“true”,失败时返回“false”。

示例 1:下面的代码演示了extractTo()创建新文件夹的函数。

PHP


<?php
  // Create a new ZipArchive object
  $zip = new ZipArchive;
  // Check for opening the zip file
  if ($zip->open('Geeks.zip')) {
      if($zip->extractTo('GFG_Folder')) {
          echo 'File Extracted Successfully';
      }
      else {
          echo 'Fail to Extract File';
      } 
      // Close the zip file
      $zip->close();
    }
    // If zip file is not open/exist
    else {
        echo 'Failed to open zip file';
    }
?>

输出:

示例 2:下面的代码演示了extractTo()函数创建一个路径为“GFG_Folder/Geeks”的新文件夹。

PHP


<?php
    // Create a new ZipArchive object
    $zip = new ZipArchive;
    // Check for opening the zip file
    if ($zip->open('Geeks.zip', ZipArchive::CREATE)) {
        $ext = $zip->extractTo('GFG_Folder/Geeks');
        if($ext) {
            echo 'File Extracted Successfully';
        }
        else {
            echo 'Fail to Extract File';
        } 
        // Close the zip file
        $zip->close();
    }
    // If zip file is not open/exist
    else {
        echo 'Failed to open zip file';
    }
?>

输出:

参考: https://www.php.net/manual/en/ziparchive.extractto.php



相关用法


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