gzopen
(PHP 4, PHP 5, PHP 7, PHP 8)
gzopen — Open gz-file
Description
Opens a gzip (.gz) file for reading or writing.
gzopen() can be used to read a file which is not in gzip format; in this case gzread() will directly read from the file without decompression.
Parameters
filenameThe file name.
modeAs in fopen() (
rborwb) but can also include a compression level (wb9) or a strategy:ffor filtered data as inwb6f,hforHuffman only compressionas inwb1h. (See the description ofdeflateInit2in zlib.h for more information about the strategy parameter.)use_include_path- If set to
true, files in the include_path are searched for too.
Return Values
Returns a file pointer to the file opened, after that, everything you read from this file descriptor will be transparently decompressed and what you write gets compressed.
If the open fails, the function returns false.
Changelog
| Version | Description |
|---|---|
| 8.5.0 | use_include_path is now of type bool. Previously, it was of type int. |
Examples
Example #1 gzopen() Example
<?php
$fp = gzopen("/tmp/file.gz", "r");
?>See Also
- gzclose() - Close an open gz-file pointer