CruzIT
Saturday September 07, 2024 - 4:27:08 AM

Registered Linux User #440901    


 
Login    Register
Login Required

Create a gzip file in PHP

This is a how-to on making a gzip file out of a text file with PHP. (alternate GNU gzip page.)
Make a file called compreport.php (or whatever you want) and put it this in it:

<?php
// Name of the file we are compressing
$srfile = "sourcefile.txt";
//Find out if the file exists do the thing
if (file_exists($srfile)) {
// Name of the gz file we are creating
$gzfile = "compressedfile.gz";
// Open the gz file (w9 is the highest compression)
$fpp = gzopen ($gzfile, 'w9');
// Compress the file
gzwrite ($fpp, file_get_contents($srfile));
// Close the gz file and we are done
gzclose($fpp);
$varzfilename=$gzfile;
echo $gzfile . ' file was generated! ';
//create the file lastmod_varz.php
//then uncomment the following line
//include "lastmod_varz.php"; 
}
//if source file is missing or has the wrong permissions!
else {
    echo 'The source file ' . $srfile . ' does not exist!!! 
    The compressed file ' . $gzfile . ' was not created or appended!';
}
?>

Make a file called lastmod_varz.php and put it wherever you put your include files. The lastmod_varz file should have this in it:

<?php
$varzfile = $varzfilename;
$last_modified = filemtime($varzfile);
print("Last modified on ");
print(date("m/j/Y" . " @ " . "h:i:s:a", $last_modified));
?>

The lastmod_varz.php can be re-used wherever you want to show when the last modified time was for any file. Just assign the $varzfilename a value either a variable name or a quoted file name:

$varzfilename=$gzfile;
OR
$varzfilename="/reports/somefile.gz";

You could make all that an include page and put some styled <p class="coolpstyle"> tags around it.

If you would like some information on how to do something use the Contact Page. Someone will get back with you with an answer.

Page generated in zero point eight eight (0.88) seconds.

@ Active Member Project Honeypot  email addresses

This page was last modified on 09/1/18 @ 10:33:50:pm
This file name: info_php_gzip.php

Questions, Comments, Suggestions or Requests should be sent to:  ronnie@cruzit.com 

There have been  17713  Unique Visitors (IP Addresses) to this site.

Current users online : 24
Maximum users at a time : 60
Last 25 attacks have come from:
85.192.41.110
45.63.83.161
66.70.181.5
45.77.6.159
103.153.214.173
15.237.180.153
147.78.47.62
51.222.44.176
51.15.184.67
45.32.92.198
13.233.249.140
149.28.250.196
107.189.11.116
85.190.242.220
145.239.10.137
91.239.208.148
62.169.29.121
45.63.90.95
68.178.166.166
45.76.18.208
155.138.243.173
36.255.3.63
13.39.19.34
159.65.227.65
35.180.242.121

There are currently 25 unique IP addresses blacklisted.

Public cruzit.com Server Status
server online dbc001  db cluster service
 Is On-Line
server offline www03  web service
 Aw Crap!, It's Off-Line
server online www  web service
 Is On-Line
server offline mx 08  mail service
 Aw Crap!, It's Off-Line
server offline www ha  F/O web service
 Aw Crap!, It's Off-Line
server offline mx 11  mail service
 Aw Crap!, It's Off-Line
server online Primary  Client DNS
 Is On-Line
server online Secondary  Client DNS
 Is On-Line

©Copyright 2004-2024 - cruzit.com - Redd Enterprises™, Inc.,  All Rights Reserved.
Ubuntu® is a registered trademark of Canonical Ltd.
Linux® is a registered trademark of Linus Torvalds.
Apache® is a registered trademark of The Apache Software Foundation.
PHP® is a registered trademark of The PHP Group.
The MariaDB® a registered trademark of the MariaDB Corporation Ab.
MySQL® is a registered trademark of the Oracle Corporation Inc.
All other product and service names mentioned are the trademarks of their respective companies.

 

pretrial
pretrial
pretrial
pretrial
Let us know what you think! finance@homelandcomputersecurity.com