Php/docs/ziparchive.extractto

来自菜鸟教程
跳转至:导航、​搜索

ZipArchive::extractTo

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0)

ZipArchive::extractTo解压缩文件


说明

ZipArchive::extractTo ( string $destination [, mixed $entries ] ) : bool

将压缩文件解压缩到指定的目录


参数

destination
解压缩的本地目标路径
entries
解压缩的文件。它接受一个单独的文件名或一个文件名数组。


返回值

成功时返回 true, 或者在失败时返回 false


范例

Example #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';}?>

Example #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';}?>