Mega Code Archive

 
Categories / Php / Code Snippets
 

This backups index.php to a gzip file

<?php $data = implode("", file("index.php")); $gzdata = gzencode($data, 9); $fp = fopen("index.php.gz", "w"); fwrite($fp, $gzdata); fclose($fp); ?>