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
相關用法
- PHP ZipArchive deleteIndex()用法及代碼示例
- PHP ZipArchive close()用法及代碼示例
- PHP ZipArchive getArchiveComment()用法及代碼示例
- PHP ZipArchive count()用法及代碼示例
- PHP ZipArchive deleteName()用法及代碼示例
- PHP ZipArchive addFromString()用法及代碼示例
- PHP ZipArchive::addEmptyDir()用法及代碼示例
- PHP Hebrev()用法及代碼示例
- PHP Max()用法及代碼示例
- PHP String htmlspecialchars()用法及代碼示例
- PHP String htmlspecialchars_decode()用法及代碼示例
- PHP String localeconv()用法及代碼示例
- PHP String nl2br()用法及代碼示例
- PHP String nl_langinfo()用法及代碼示例
- PHP String quoted_printable_decode()用法及代碼示例
- PHP String quoted_printable_encode()用法及代碼示例
- PHP String sprintf()用法及代碼示例
- PHP String sscanf()用法及代碼示例
- PHP String str_replace()用法及代碼示例
- PHP String strrpos()用法及代碼示例
- PHP String strspn()用法及代碼示例
- PHP String strstr()用法及代碼示例
- PHP String strtok()用法及代碼示例
- PHP String strtolower()用法及代碼示例
- PHP String strtoupper()用法及代碼示例
注:本文由純淨天空篩選整理自vkash8574大神的英文原創作品 PHP ZipArchive extractTo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。