From: Raphaƫl Gertz Date: Fri, 8 Mar 2024 01:08:30 +0000 (+0100) Subject: Add getEastern member function X-Git-Tag: 0.4.0~5 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/f20e37360674d48c164ad95ce0105d7f5f5014ef Add getEastern member function --- diff --git a/Util/IntlUtil.php b/Util/IntlUtil.php index eb7711f..b37169d 100644 --- a/Util/IntlUtil.php +++ b/Util/IntlUtil.php @@ -84,6 +84,46 @@ class IntlUtil { return $formatter->formatCurrency($number, $currency); } + /** + * Compute eastern for selected year + * + * @param string $year The eastern year + * + * @return DateTime The eastern date + */ + public function getEastern(string $year): \DateTime { + //Set static results + static $results = []; + + //Check if already computed + if (isset($results[$year])) { + //Return computed eastern + return $results[$year]; + } + + $d = (19 * ($year % 19) + 24) % 30; + + $e = (2 * ($year % 4) + 4 * ($year % 7) + 6 * $d + 5) % 7; + + $day = 22 + $d + $e; + + $month = 3; + + if ($day > 31) { + $day = $d + $e - 9; + $month = 4; + } elseif ($d == 29 && $e == 6) { + $day = 10; + $month = 4; + } elseif ($d == 28 && $e == 6) { + $day = 18; + $month = 4; + } + + //Store eastern in data + return ($results[$year] = new \DateTime(sprintf('%04d-%02d-%02d', $year, $month, $day))); + } + /** * Gets number formatter instance matching locale and style. *