CakeFest 2024: The Official CakePHP Conference

はじめに

このモジュールにより gzip (.gz) で圧縮されたファイルを読み書きすることが可能となります。 この際、ファイルシステム 関数の gzip 圧縮対応版 (非圧縮ファイルも扱えますが、 ソケットは扱えません)を使用します。

注意:

PHP には、.gz ファイルに対応した fopen のラッパーが搭載されています。 詳細な情報は、 zlib:// にあります。

add a note

User Contributed Notes 1 note

up
-6
Anon
4 years ago
This introduction is incomplete because it lacks the information that the module can be used to use HTTP gzip compression with the 'zlib.output_compression' and 'zlib.output_compression_level' configuration settings.

Please be aware that cross-site scripting should be disabled when using HTTP compression because of possible BREACH attacks.
To Top