Skip to content

Instantly share code, notes, and snippets.

@sasezaki
Created March 17, 2012 07:48
Show Gist options
  • Select an option

  • Save sasezaki/2056314 to your computer and use it in GitHub Desktop.

Select an option

Save sasezaki/2056314 to your computer and use it in GitHub Desktop.
php retry by limited goto
<?php
static $retry = 0;
retry:
try {
echo time(), PHP_EOL;
throw new \RuntimeException;
} catch (RuntimeException $e) {
if (++$retry < 3) goto retry;
}
echo 'done';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment