results-api.php 352 B

123456789101112131415161718192021
  1. <?php
  2. require_once "./SleekDB/SleekDB.php";
  3. require_once "./config.php";
  4. $store = \SleekDB\SleekDB::store('speedlogs', './',[
  5. 'auto_cache' => false,
  6. 'timeout' => 120
  7. ]);
  8. $logs = $store
  9. ->orderBy( 'desc', 'created' )
  10. ->limit( MAX_LOG_COUNT )
  11. ->fetch();
  12. $data = [
  13. 'code' => 0,
  14. 'data' => $logs,
  15. ];
  16. echo json_encode($data);