<?php // will retry 5 times by default at 1 minute interval $retry_command = new RetryCall; $retry_command->retry(function() { $elephant = 1; $ant = 0; return $ant >= $elephant; });
info at phpclasses dot org