![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
17/06/2005, 16:36
|
| | Fecha de Ingreso: marzo-2005
Mensajes: 76
Antigüedad: 19 años, 10 meses Puntos: 0 | |
$zp = @gzopen( $srcFileName, "r" );
$fp = @fopen( $dstFileName, "w" );
while( !@gzeof( $zp ) ) {
$string = @gzread( $zp, 4096 );
@fwrite( $fp, $string, strlen($string) );
}
@gzclose( $zp );
@fclose( $fp ); |