Files
NetAlertX/front/php/server/cache-bottom.php
2022-08-04 00:17:47 +10:00

7 lines
183 B
PHP

<?php
// Cache the contents to a cache file
$cached = fopen($cachefile, 'w');
fwrite($cached, ob_get_contents());
fclose($cached);
ob_end_flush(); // Send the output to the browser
?>