= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)ZipArchive::extractTo — 解壓縮文件說(shuō)明ZipArchive::extractTo(string $destination, mixed ">
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)
ZipArchive::extractTo — 解壓縮文件
destination
解壓縮的本地目標(biāo)路徑
entries
解壓縮的文件。它接受一個(gè)單獨(dú)的文件名或一個(gè)文件名數(shù)組。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 Extract all entries
<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
$zip->extractTo('/my/destination/dir/');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>
示例 #2 Extract two entries
<?php
$zip = new ZipArchive;
$res = $zip->open('test_im.zip');
if ($res === TRUE) {
$zip->extractTo('/my/destination/dir/', array('pear_item.gif', 'testfromfile.php'));
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>