1. Go to this page and download the library: Download enl/retry-loop library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
enl / retry-loop example snippets
$response = $serviceClient->push($uri, $data);
$loop = new RetryLoop($retries = 5);
$response = $loop->run(function() use ($serviceClient, $uri, $data) {
return $serviceClient->push($uri, $data);
});
$loop = RetryLoop::builder
->retries(5)
->giveUpAt(BadRequestException::class)
->giveUpAt(SomeOtherException::class)
->giveUpAt([YetAnotherException::class])
->beforeRetry(function() { sleep(5); })
->get(); // or just `run` and get result if builder is not needed after that.
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.