Merge pull request #89 from house-of-abbey/restyled/87-look-for-memory-usage-efficiencies

Restyle 87 look for memory usage efficiencies
This commit is contained in:
Philip Abbey
2024-01-22 22:25:46 +00:00
committed by GitHub

View File

@ -20,7 +20,7 @@
// larger submissions in order to prevent overflow of the blue tooth stack. // larger submissions in order to prevent overflow of the blue tooth stack.
// //
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
// //
// Usage: // Usage:
// wl = new WebLog(); // wl = new WebLog();
// wl.clear(); // wl.clear();
@ -28,7 +28,7 @@
// wl.flush(); // wl.flush();
// //
// https://domain.name/path/log.php // https://domain.name/path/log.php
// //
// <?php // <?php
// $myfile = fopen("log", "a"); // $myfile = fopen("log", "a");
// $queries = array(); // $queries = array();
@ -36,11 +36,11 @@
// fwrite($myfile, $queries['log']); // fwrite($myfile, $queries['log']);
// print "Success"; // print "Success";
// ?> // ?>
// //
// Logs published to: https://domain.name/path/log // Logs published to: https://domain.name/path/log
// //
// https://domain.name/path/log_clear.php // https://domain.name/path/log_clear.php
// //
// <?php // <?php
// $myfile = fopen("log", "w"); // $myfile = fopen("log", "w");
// fwrite($myfile, ""); // fwrite($myfile, "");