search
HomeBackend DevelopmentPHP TutorialPHP解压缩zip文件代码实现

在具体网站编程项目中,有时候要使用PHP脚本代码的方式来控制压缩和解压zip文件。下面是一个简单的php的zip解压缩实现代码,需要的朋友可以参考下仔细的研究了一下。

PHP安装后自带 zip 扩展 ,首先我们需要开启它,把 php.ini 中的 extension=php_zip.dll 前面的分号去掉就,接着重启web服务器即可。

php的zip解压缩实现代码如下:

<?php</p><p>//需开启配置 php_zip.dll</p>//phpinfo();<br /><p>header("Content-type:text/html;charset=utf-8");</p><p>function get_zip_originalsize($filename, $path) {</p> //先判断待解压的文件是否存在<br /> if(!file_exists($filename)){<br />  die("文件 $filename 不存在!");<br /> } <br /> $starttime = explode(' ',microtime()); //解压开始的时间<br /><br /> //将文件名和路径转成windows系统默认的gb2312编码,否则将会读取不到<br /> $filename = iconv("utf-8","gb2312",$filename);<br /> $path = iconv("utf-8","gb2312",$path);<br /> //打开压缩包<br /> $resource = zip_open($filename);<br /> $i = 1;<br /> //遍历读取压缩包里面的一个个文件<br /> while ($dir_resource = zip_read($resource)) {<br />  //如果能打开则继续<br />  if (zip_entry_open($resource,$dir_resource)) {<br />   //获取当前项目的名称,即压缩包里面当前对应的文件名<br />   $file_name = $path.zip_entry_name($dir_resource);<br />   //以最后一个“/”分割,再用字符串截取出路径部分<br />   $file_path = substr($file_name,0,strrpos($file_name, "/"));<br />   //如果路径不存在,则创建一个目录,true表示可以创建多级目录<br />   if(!is_dir($file_path)){<br />    mkdir($file_path,0777,true);<br />   }<br />   //如果不是目录,则写入文件<br />   if(!is_dir($file_name)){<br />    //读取这个文件<br />    $file_size = zip_entry_filesize($dir_resource);<br />    //最大读取6M,如果文件过大,跳过解压,继续下一个<br />    if($file_size<(1024*1024*6)){<br />     $file_content = zip_entry_read($dir_resource,$file_size);<br />     file_put_contents($file_name,$file_content);<br />    }else{<br />     echo "<p> ".$i++." 此文件已被跳过,原因:文件过大, -> ".iconv("gb2312","utf-8",$file_name)." </p>";<br />    }<br />   }<br />   //关闭当前<br />   zip_entry_close($dir_resource);<br />  }<br /> }<br /> //关闭压缩包<br /> zip_close($resource); <br /> $endtime = explode(' ',microtime()); //解压结束的时间<br /> $thistime = $endtime[0]+$endtime[1]-($starttime[0]+$starttime[1]);<br /> $thistime = round($thistime,3); //保留3为小数<br /> echo "<p>解压完毕!,本次解压花费:$thistime 秒。</p>";<br /><p>}</p><p>$size = get_zip_originalsize('test.zip','./');</p><p>?></p>

测试解压了一个300多KB的小文件,花了0.115秒,测试解压了一个30多MB的(网页文件,小文件比较多),花了20多秒。


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

How do you optimize PHP applications for performance?How do you optimize PHP applications for performance?May 08, 2025 am 12:08 AM

TooptimizePHPapplicationsforperformance,usecaching,databaseoptimization,opcodecaching,andserverconfiguration.1)ImplementcachingwithAPCutoreducedatafetchtimes.2)Optimizedatabasesbyindexing,balancingreadandwriteoperations.3)EnableOPcachetoavoidrecompil

What is dependency injection in PHP?What is dependency injection in PHP?May 07, 2025 pm 03:09 PM

DependencyinjectioninPHPisadesignpatternthatenhancesflexibility,testability,andmaintainabilitybyprovidingexternaldependenciestoclasses.Itallowsforloosecoupling,easiertestingthroughmocking,andmodulardesign,butrequirescarefulstructuringtoavoidover-inje

Best PHP Performance Optimization TechniquesBest PHP Performance Optimization TechniquesMay 07, 2025 pm 03:05 PM

PHP performance optimization can be achieved through the following steps: 1) use require_once or include_once on the top of the script to reduce the number of file loads; 2) use preprocessing statements and batch processing to reduce the number of database queries; 3) configure OPcache for opcode cache; 4) enable and configure PHP-FPM optimization process management; 5) use CDN to distribute static resources; 6) use Xdebug or Blackfire for code performance analysis; 7) select efficient data structures such as arrays; 8) write modular code for optimization execution.

PHP Performance Optimization: Using Opcode CachingPHP Performance Optimization: Using Opcode CachingMay 07, 2025 pm 02:49 PM

OpcodecachingsignificantlyimprovesPHPperformancebycachingcompiledcode,reducingserverloadandresponsetimes.1)ItstorescompiledPHPcodeinmemory,bypassingparsingandcompiling.2)UseOPcachebysettingparametersinphp.ini,likememoryconsumptionandscriptlimits.3)Ad

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.