Guest User

Untitled

a guest
May 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. include('whatever.php');
  3. while(true) {
  4. itstime();
  5. sleep(3600);
  6. }
  7. ?>
  8.  
  9. <?php
  10. $lastrun = get_last_run_time(); // get value from database or filesystem
  11. if( time()-$lastrun > 60*60 ) {
  12. itstime();
  13. set_last_run_time(time()); // write value back to database or filesystem
  14. }
  15. // The rest of your page
  16. ?>
Add Comment
Please, Sign In to add comment