Ex-Floodeur La Source | jai fait comme ca :
Code :
- <?php
- ob_start();
- $datas = 'datas';
- $image_data = ob_get_contents();
- echo $image_data;
-
- $gzdata = gzencode($image_data, 9);
-
- // ouverture et création du fichier compressé
- if($fp = fopen('temp.gz', 'wb')) {
- // écriture des données compressées
- fwrite($fp, $gzdata);
- // fermeture
- fclose($fp);
- }
- if($gz = gzopen('temp.gz', "rb" )) {
- // tant qu'on n'a pas atteint la fin du fichier
- while(!gzeof($gz)) {
- // lecture et décompression à la volée
- $text.= gzread($gz, 1024);
- }
- }
- echo $text;
- ?>
|
mais ca marche pas ---------------
Saint Seiya || La Livebox || Europe, débats, réflexions
|