Skip to content

Instantly share code, notes, and snippets.

@iksi
Created January 15, 2015 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iksi/00453f6438f548de26e2 to your computer and use it in GitHub Desktop.
Save iksi/00453f6438f548de26e2 to your computer and use it in GitHub Desktop.
Poor man’s cron
<?php
/**
* Simple PHP if statement to execute recurring tasks
* by executing those when visited by a bot
*/
if (preg_match('/slurp|googlebot/i', $_SERVER['HTTP_USER_AGENT'])) {
// tasks to execute
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment