| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | protected static function process($jdn) |
||
| 46 | { |
||
| 47 | $r = (($jdn - 1723856) % 1461); |
||
| 48 | $n = ($r % 365) + 365 * (int)($r / 1460); |
||
| 49 | |||
| 50 | $year = 4 * (int)(($jdn - 1723856) / 1461) + |
||
| 51 | (int)($r / 365) - (int)($r / 1460); |
||
| 52 | $month = (int)($n / 30) + 1; |
||
| 53 | $day = ($n % 30) + 1; |
||
| 54 | |||
| 55 | return compact('day', 'month', 'year'); |
||
| 56 | } |
||
| 57 | |||
| 67 |