php-ext-zstd
php-ext-zstd copied to clipboard
zstd_uncompress error!
try use zstd_uncompress with binary file, return false without error message.
the 1.zstd binary is generate from nodejs with https://github.com/Stieneee/node-zstd.git. can be decode with nodejs.
node-zstd encode data can be decode by php-ext-zstd.
test this file with zstd binary command, also work.
php-ext-zstd does not suport streaming. Those compressed with Streaming need to decompress with Streaming.
node-zstd is compressed with Streaming.
if (dict != NULL && dictSize > 0) { ZSTD_initCStream_usingDict(zcs, dict, dictSize, level); } else { ZSTD_initCStream(zcs, level); }
TODO: Streaming support of php-ext-zstd
6231a4756ae09116c331271948416f5c0cd3f495 Updated so that things compressed by streaming can be decompressed.