kjdev / php-ext-zstd

Zstd Extension for PHP
MIT License
201 stars 27 forks source link

Enable append mode in extension #60

Closed berezuev closed 10 months ago

berezuev commented 10 months ago

As I see, there is no limit to use Append mode for fwrite.

Zstd lib supports this. E.g. In bash:

$ echo 'hello ' | zstd >> awesome.zst
$ echo 'there' | zstd >> awesome.zst
$ zstdcat awesome.zst 
hello 
there

So I added it to this extensions (no code changes needed except of on "if" statement)

kjdev commented 10 months ago

Thanks.