PHP: Fonction de base pour lire un fichier compressé

Author:
 
<?php
$fh = fopen('compress.zlib://test.gz','r') or die("can't open: $php_errormsg");
while ($line = fgets($fh)) {
}
fclose($fh) or die("can't close: $php_errormsg");
?>
  
  

Leave a Reply

Your email address will not be published. Required fields are marked *


five × 1 =