Skip to content

Instantly share code, notes, and snippets.

@amochohan
Created April 11, 2017 13:18
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 amochohan/e4ced253fa8bd6ca73c9ce6e020852ba to your computer and use it in GitHub Desktop.
Save amochohan/e4ced253fa8bd6ca73c9ce6e020852ba to your computer and use it in GitHub Desktop.
Retrying a task
<?php
try($attempts = 1, $wait = 0) {
// Try $attempts times to do something, waiting $wait milliseconds between trys
// Within the try block scope, we have access to the $attempts and $wait arguments
$this->log('Doing something important attempt: ' . $attempt);
}
catch (Exception $e) {
// Do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment