Heim >Backend-Entwicklung >PHP-Tutorial > 哥哥姐姐们 PHP如何压缩大文件

哥哥姐姐们 PHP如何压缩大文件

WBOY
WBOYOriginal
2016-06-13 13:27:33978Durchsuche

哥哥姐姐们 PHP怎么压缩大文件
  要压缩的文件最少为40M

我的代码
$data       =       implode(   "   ",       file(   "timer.php "));
$gzdata       =       gzencode($data,       9);
$fp       =       fopen(   "file.php.gz   ",       "w   ");
fwrite($fp,       $gzdata);
fclose($fp)



------解决方案--------------------
http://php.net/manual/zh/refs.compression.php
------解决方案--------------------
zlib支持字节流,不过php接口太简化了,你可以用:
http://www.php.net/manual/zh/function.gzopen.php

打开普通文件,fopen+fread慢慢读,然后gzopen+gzwrite慢慢写。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel: PHP+COM,该怎么处理 Nächster Artikel: mysql数据库有关问题