optimisations

This commit is contained in:
jokob-sk
2022-08-04 00:17:47 +10:00
parent c9bc27531a
commit 86ffe8ba36
4 changed files with 35 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
<?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
?>