| |
gzclose |
Ferme un pointeur de fichier GZ ouvert |
| |
|
int gzclose( int zp )
|
| |
gzeof |
Teste la fin de fichier sur un pointeur de fichier GZ |
| |
|
int gzeof( int zp )
|
| |
gzfile |
Lit un fichier GZ entier et place son contenu dans un tableau |
| |
|
array gzfile( string filename )
|
| |
gzgetc |
Retourne un caractère d'un fichier GZ |
| |
|
string gzgetc( int zp )
|
| |
gzgets |
Retourne une ligne d'un fichier GZ |
| |
|
string gzgets( int zp, int length )
|
| |
gzgetss |
Retourne une ligne d'un fichier GZ, débarassée des tags HTML et PHP |
| |
|
string gzgetss( int zp, int length )
|
| |
gzopen |
Ouvre un fichier GZ |
| |
|
int gzopen( string filename, string mode )
|
| |
gzpassthru |
Écrit la partie restante d'un fichier GZ sur la sortie standard |
| |
|
int gzpassthru( int zp )
|
| |
gzputs |
Écrit dans un fichier GZ |
| |
|
int gzputs( int zp, string str, int [ length ] )
|
| |
gzread |
Lit les données binaires d'un fichier GZ |
| |
|
string gzread( int zp, int length )
|
| |
gzrewind |
Replace le pointeur au début d'un fichier GZ |
| |
|
int gzrewind( int zp )
|
| |
gzseek |
Positionne le pointeur à un offset donné |
| |
|
int gzseek( int zp, int offset )
|
| |
gztell |
Retourne la position courante du pointeur |
| |
|
int gztell( int zp )
|
| |
gzwrite |
Écrit des données binaires dans un fichier GZ |
| |
|
int gzwrite( int zp, string string, int [ length ] )
|
| |
readgzfile |
Lit un fichier GZ entier et écrit son contenu sur la sortie standard |
| |
|
int readgzfile( string filename )
|