Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
alt-php53-brotli /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
1.71
KB
-rw-r--r--
2017-11-09 23:54
Save
Rename
# Brotli Extension for PHP [](https://travis-ci.org/kjdev/php-ext-brotli) This extension allows Brotli compression. Documentation for Brotli can be found at [» https://github.com/google/brotli/](https://github.com/google/brotli/). ## Build ``` % git clone --recursive --depth=1 https://github.com/kjdev/php-ext-brotli.git % cd php-ext-brotli % phpize % ./configure % make $ make install ``` ## Configuration brotli.ini: ``` extension=brotli.so ``` ## Function * brotli\_compress — Compress a string * brotli\_uncompress — Uncompress a compressed string ## brotli\_compress — Compress a string ### Description string **brotli\_compress** ( string _$data_ [, int _$quality_ = 11, int _$mode_ = -1 ] ) This function compress the given string using the ZLIB data format. ### Parameters * _data_ The data to compress. * _quality_ The higher the quality, the slower the compression. (Defaults to 11) * _mode_ The compression mode can be `BROTLI_GENERIC` (default), `BROTLI_TEXT` (for UTF-8 format text input) or `BROTLI_FONT` (for WOFF 2.0). ### Return Values The compressed string or FALSE if an error occurred. ### brotli\_uncompress — Uncompress a compressed string ### Description string **brotli\_uncompress** ( string _$data_ [, int _$length_ = 0 ] ) This function uncompress a compressed string. ### Parameters * _data_ The data compressed by brotli\_compress(). * _length_ The maximum length of data to decode. ### Return Values The original uncompressed data or FALSE on error. ## Examples ``` $compressed = brotli_compress('Compresstest'); $uncompressed = brotli_uncompress($compressed); echo $uncompressed; ```