1
Precise unzip a string compressed in GZIP standard in PHP. The field type is base64Binary.
I’ve tried to:
gzinflate($string);
gzdecode($string);
gzuncompress($string);
But I only had return of "data error" in the use of the three functions.
How could I solve this problem?