PHP 8.2.4 Released!

gzgets

(PHP 4, PHP 5, PHP 7, PHP 8)

gzgetsObtém uma linha de um ponteiro de arquivo

Descrição

gzgets(resource $zp, int $length): string

Obtém uma (descomprimida) string até o tamanho length - 1 bytes lidos a partir do ponteiro de arquivo dado. A leitura termina quando length - 1 bytes tiverem sido lidos, em uma nova liha ou em EOF (o que vier primeiro).

Parâmetros

zp

O ponteiro do arquivo deve ser válido, e deve apontar para um arquivo aberto corretamente com gzopen().

length

O tamanho dos dados a pegar.

Valor Retornado

A string descomprimida, ou false em caso de erro.

Exemplos

Exemplo #1 gzgets() example

<?php
$handle
= gzopen('somefile.gz', 'r');
while (!
gzeof($handle)) {
$buffer = gzgets($handle, 4096);
echo
$buffer;
}
gzclose($handle);
?>

Veja Também

  • gzopen() - Abre um arquivo-gz
  • gzgetc() - Obtém um caractere de um ponteiro de arquivo-gz
  • gzwrite() - Escrita segura para binário em arquivo-gz

add a note

User Contributed Notes 3 notes

up
1
prismngp1 at yahoo dot com
20 years ago
<?
// this is simple code by VIJAY to unzip .gz file
$file = "/absolute/path/to/your/file" ;
$fp = fopen("$file", "w") ;
// file to be unzipped on your server
$filename = "filename.gz" ;
$zp = gzopen($filename, "r");

if ($zp)
{
  while (!gzeof($zp))
  {
    $buff1 = gzgets ($zp, 4096) ;
    fputs($fp, $buff1) ;
  }               
}           
gzclose($zp) ;
fclose($fp) ;
?>
up
0
divinity76 at gmail dot com
3 years ago
PS when it encounters and breaks on a newline byte ("\n"), the newline byte itself is not included in the returned string.
up
0
Anonymous
17 years ago
For the above example by VIJAY, using gzgetc would be better, as I've encountered binary/text file incompatibilities (at least with PHP 4.0.4).
To Top