PHP Zip解壓 文件在線解壓縮的函數(shù)代碼
更新時間:2010年05月26日 00:34:37 作者:
PHP在線解壓縮Zip 文件函數(shù)代碼,需要在線zip解壓的朋友可以參考下。
復(fù)制代碼 代碼如下:
/**********************
*@file - path to zip file
*@destination - destination directory for unzipped files
*/
function unzip_file($file, $destination){
// create object
$zip = new ZipArchive() ;
// open archive
if ($zip->open($file) !== TRUE) {
die ('Could not open archive');
}
// extract contents to destination directory
$zip->extractTo($destination);
// close archive
$zip->close();
echo 'Archive extracted to directory';
}
PHP Zip壓縮 在線對文件進(jìn)行壓縮的函數(shù)
相關(guān)文章
PHP中把對象轉(zhuǎn)換為關(guān)聯(lián)數(shù)組代碼分享
這篇文章主要介紹了PHP中把對象轉(zhuǎn)換為關(guān)聯(lián)數(shù)組代碼分享,本文直接給出實現(xiàn)代碼,需要的朋友可以參考下2015-04-04
php通過curl添加cookie偽造登陸抓取數(shù)據(jù)的方法
這篇文章主要介紹了php通過curl添加cookie偽造登陸抓取數(shù)據(jù)的方法,涉及PHP基于curl操作cookie及頁面抓取的相關(guān)技巧,需要的朋友可以參考下2016-04-04

