複製程式碼 程式碼如下:
/**********************
*@file - zip 檔案的路徑
*@destination - 解壓縮檔案的目標目錄
*/
function unzip_file($file, $destination){
// create object
$zip = new ZipArchive() ;
// open archive
if ($zip->open($file) !== TRUE) {
die ($zip->open($file) !== TRUE) {
die ( 'Could not open archive');
}
// extract contents to destination directory
$zip->extractTo($destination);
//close archive
$ ();
echo 'Archive extracted to directory';
}
PHP Zip壓縮線上對檔案進行壓縮的函數
以上就介紹了rar解壓縮 PHP Zip解壓縮 檔案線上解壓縮的函數程式碼,包含了rar解壓縮的內容,希望對PHP教學有興趣的朋友有幫助。