php 拉取压缩,如何使用php提取或解压缩gzip文件?

function uncompress($srcName, $dstName) {

$sfp = gzopen($srcName, "rb");

$fp = fopen($dstName, "w");

while ($string = gzread($sfp, 4096)) {

fwrite($fp, $string, strlen($string));

}

gzclose($sfp);

fclose($fp);

}

我试过这段代码,但这不起作用,我得到:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@domain.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

解决方法:

试试这个发现here

//This input should be from somewhere else, hard-coded in this example

$file_name = '2013-07-16.dump.gz';

// Raising this value may increase performance

$buffer_size = 4096; // read 4kb at a time

$out_file_name = str_replace('.gz', '', $file_name);

// Open our files (in binary mode)

$file = gzopen($file_name, 'rb');

$out_file = fopen($out_file_name, 'wb');

// Keep repeating until the end of the input file

while (!gzeof($file)) {

// Read buffer-size bytes

// Both fwrite and gzread and binary-safe

fwrite($out_file, gzread($file, $buffer_size));

}

// Files are done, close files

fclose($out_file);

gzclose($file);

标签:php,compression,gzip

来源: https://codeday.me/bug/20190927/1822577.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值