CruzIT
Thursday November 30, 2023 - 10:53:48 PM

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 zero five (0.05) 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  6736  Unique Visitors (IP Addresses) to this site.

Current users online : 18
Maximum users at a time : 62
Last 25 attacks have come from:
195.117.171.41
183.83.176.65
34.93.60.156
5.133.13.254
1.206.111.197
60.213.28.166
103.157.167.82
66.249.66.139
199.195.252.77
91.92.247.145
93.183.131.53
212.156.30.78
178.208.171.208
128.90.144.97
72.167.104.249
78.153.140.218
104.244.76.64
91.92.243.106
43.200.245.117
20.80.235.231
47.251.14.232
47.88.78.6
128.90.43.95
185.225.75.50
159.89.193.202

There are currently 25 unique IP addresses blacklisted.

Public cruzit.com Server Status
server online dbc001  db cluster service
 Is On-Line
server online www03  web service
 Is On-Line
server online www  web service
 Is On-Line
server online mx 08  mail service
 Is On-Line
server online www ha  F/O web service
 Is On-Line
server online mx 11  mail service
 Is On-Line
server online Primary  Client DNS
 Is On-Line
server online Secondary  Client DNS
 Is On-Line

©Copyright 2004-2023 - 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