gzfile
PHP function
Edit on GitHub ✎
(PHP 4, PHP 5, PHP 7, PHP 8)
Read entire gz-file into an array
Description
gzfile(string $filename, bool $use_include_path = false): array|false
This function is identical to readgzfile(), except that it returns the file in an array.
Parameters
filenameThe file name.
use_include_pathIf set to true, files in the include_path are searched for too.
Return Values
An array containing the file, one line per cell, empty lines included, and with newlines still attached, Falseforfailure.
Changelog
| Version | Description |
|---|---|
| 8.5.0 | use_include_path is now of type bool. Previously, it was of type int. |
Examples
gzfile() example
php
<?php
$lines = gzfile('somefile.gz');
foreach ($lines as $line) {
echo $line;
}
?>