mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-06 17:15:38 -08:00
7 lines
183 B
PHP
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
|
|
?>
|