Skip to content

Instantly share code, notes, and snippets.

@Webklex
Created July 29, 2013 14:38
Show Gist options
  • Save Webklex/6104765 to your computer and use it in GitHub Desktop.
Save Webklex/6104765 to your computer and use it in GitHub Desktop.
PHP Cronjobalternative
ignore_user_abort(1); // run script in background
set_time_limit(0); // run script forever
$interval=60*15; // do every 15 minutes...
do{
// add the script that has to be ran every 15 minutes here
// ...
sleep($interval); // wait 15 minutes
}while(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment