ZipArchive::deleteName
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::deleteName — 名前を使用して、アーカイブからエントリを削除する
パラメータ
name
-
削除するエントリの名前。
例
例1 名前を使用した、アーカイブからのファイルやディレクトリの削除
<?php
$zip = new ZipArchive;
if ($zip->open('test1.zip') === TRUE) {
$zip->deleteName('testfromfile.php');
$zip->deleteName('testDir/');
$zip->close();
echo '成功';
} else {
echo '失敗';
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google