We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
1.zstd
node-zstd encode data can be decode by php-ext-zstd.
The text was updated successfully, but these errors were encountered:
test this file with zstd binary command, also work.
Sorry, something went wrong.
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); }
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
6231a47 Updated so that things compressed by streaming can be decompressed.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: