PHP code example of icanhazstring / retry
1. Go to this page and download the library: Download icanhazstring/retry 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/ */
icanhazstring / retry example snippets
// retry(callable, retries = 1, sleep = 10);
// call failingMethod, maximum 3 retries, wait 100ms between retires
retry(fn() => failingMethod(), 3, 100);
retry(function() use ($dependency) {
failingMethod();
}, 3, 100)