kjdev

Results 61 comments of kjdev

Please check if the version of `phpize`, `/usr/local/bin/php` is the same. ``` $ phpize --version Configuring for: PHP Api Version: 20170718 Zend Module Api No: 20170718 Zend Extension Api No:...

`-bash: $: command not found` ?? Find the following string from `/usr/local/bin/php -i` . ``` PHP API => .xxx PHP Extension => xxx Zend Extension => xxx ```

> $ phpize --version > Configuring for: > PHP Api Version: 20131106 > Zend Module Api No: 20131226 > Zend Extension Api No: 220131226 Please replace the `phpize` version with...

| PHP Version | PHP Extension | Zend Extension | |-------------|---------------|----------------| | PHP 5.6 | 20131226 | 20131226 | | PHP 7.1 | 20160303 | 20160303 | Since phpize is...

Added a new function for simple incremental processing. - `brotli_compress_init` - `brotli_compress_init add` - `brotli_uncompress_init` - `brotli_uncompress_add` sample. ``` php // compression $resource = brotli_compress_init(); $compressed = ''; $compressed .=...

c780933 Added an argument to brotli_compress_init().

The test in CI passed. Where did you get the idea that we don't support it? ``` Run make test Build complete. Don't forget to run 'make test'. ===================================================================== PHP...

Do you have a source of brotli? The brotli directory is a submodule. ``` . |-- php_brotli.h |-- brotli.c |-- brotli (submodule) |-- c |-- common | |-- constants.c |...

If the brotli library is not found, the extesion source will be included in the build. https://github.com/kjdev/php-ext-brotli/blob/master/config.w32 ``` if (CHECK_LIB("brotlicommon.lib;libbrotlicommon.lib", "brotli", PHP_BROTLI) && CHECK_LIB("brotlidec.lib;libbrotlidec.lib", "brotli", PHP_BROTLI) && CHECK_LIB("brotlienc.lib;libbrotlienc.lib", "brotli", PHP_BROTLI)...

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 >...