PHP 用PHP解压缩文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 用PHP解压缩文件相关的知识,希望对你有一定的参考价值。

<?php
	$zip = zip_open("zip.zip");
	
	if (is_resource($zip)) { 
	
		while ($zip_entry = zip_read($zip)) { 
			$fp = fopen("zip/".zip_entry_name($zip_entry), "w"); 
			if (zip_entry_open($zip, $zip_entry, "r")) { 
				$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); 
				fwrite($fp,"$buf"); 
				zip_entry_close($zip_entry); 
				fclose($fp); 
			} 
		} 
		
		zip_close($zip);		
	}
?>

以上是关于PHP 用PHP解压缩文件的主要内容,如果未能解决你的问题,请参考以下文章

PHP 用PHP解压缩

使用 php 解压缩压缩文件

PHP PHP POWWEB解压缩文件

PHP PHP类:解压缩文件

PHP 使用PHP解压缩文件

PHP解压缩zip文件