clean_temp.php 324 B

12345678910111213141516
  1. <?php
  2. ini_set('max_execution_time', 0);
  3. require_once 'auth.php';
  4. $metaTables = $adodb->MetaTables();
  5. $adodb->debug = 1;
  6. $i = 0;
  7. foreach ($metaTables as $k => $v) {
  8. if (ereg('^qb_temp_', $v)) {
  9. $i++;
  10. $adodb->Execute("DROP TABLE IF EXISTS ".$v);
  11. }
  12. }
  13. if ($i === 0) echo 'No Temporary Tables Deleted.';
  14. ?>