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