dpub33855 2015-08-01 07:20
浏览 22
已采纳

PHP无法通过Golang解压缩gzip数据

Why can't decompress gzip data by Go in my PHP demo, but PHP gzip data to Go is successful? I need post gzip JSON data from Go to PHP API service.

Test result

 -> |  php   |  go 
---------------------
php |  ok    |  ok
go  |  fail  |  ok

PHP code

class GzipDemo
{
    public function gzen($data, $file){
       $json_data = json_encode($data);
       $gz_data = gzencode($json_data,9);
       file_put_contents($file,$gz_data);
    }

    public function gzdn($file){
       $data = file_get_contents($file);
        $unpacked = gzdecode($data);
        if ($unpacked === FALSE)
        {
            print("failed:".$file."
");
        }else{
             print($file. " result Data :".$unpacked ."
");
        }
    }
}

$demo = new GzipDemo();
$file="phpgzip.txt";
$demo->gzen("data",$file);
$demo->gzdn($file);
$demo->gzdn("gogzip.txt");

This result: PHP to PHP okay. Go to PHP fail.

Go code

package main

import (
    "bytes"
    "compress/gzip"
    "encoding/json"
    "fmt"
    "io/ioutil"
    "os"
)

func main() {
    gzen("data", "gogzip.txt")
    gden("gogzip.txt")
    gden("phpgzip.txt")
}
func gzen(data string, file string) {
    b, _ := json.Marshal(data)
    buffer := new(bytes.Buffer)
    w, _ := gzip.NewWriterLevel(buffer, gzip.BestCompression)
    defer w.Close()
    w.Write(b)
    w.Flush()
    ioutil.WriteFile(file, buffer.Bytes(), os.ModePerm)
}
func gden(file string) {
    b, _ := ioutil.ReadFile(file)
    buffer := new(bytes.Buffer)
    buffer.Write(b)
    r, _ := gzip.NewReader(buffer)
    defer r.close()
    data, _ := ioutil.ReadAll(r)
    fmt.Println(file, " result Data:", string(data))
}

This result: Go to Go okay. PHP to Go okay.

  • 写回答

1条回答 默认 最新

  • duanqian3464 2015-08-01 08:19
    关注

    It works with the following changes:

    • In your PHP code you want to use gzdecode instead of gzinflate. And you don't need this substr($data, 10) stuff if you use that. I didn't read up on how deflate relates to gzip but the simplicity is that gzencode/gzdecode match what the golang gzip package does and what the gz* family of GNU command line tools do.
    • In your Go code move your gzip.Writer.Close() call to be done before you read from buffer. As you can see here: http://golang.org/src/compress/gzip/gzip.go?s=6230:6260#L240 there is some additional stuff that is written to the underlying stream upon close, so in your example above what you are writing is incomplete. (The defer statement causes Close() to be run after the containing function exits.) Most likely the Go gzip decoding is managing to decode anyway whereas the PHP implementation is not - in any case you should properly close the stream to your in memory buffer to ensure it is complete before writing it out to a file.

    OBLIGATORY NOTE: You are ignoring all of your errors in your Go code. This code looks like just a test so I won't belabor the point but you definitely want to be doing proper error handling (either reporting the problem to the user or to the caller of your function).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 r语言神经网络自变量重要性分析
  • ¥15 基于双目测规则物体尺寸
  • ¥15 wegame打不开英雄联盟
  • ¥15 公司的电脑,win10系统自带远程协助,访问家里个人电脑,提示出现内部错误,各种常规的设置都已经尝试,感觉公司对此功能进行了限制(我们是集团公司)
  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢