summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/calendar.php
blob: a5b03905eb5549580292c373d8ce5674a183eb03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

namespace Safe;

use Safe\Exceptions\CalendarException;

/**
 * Return the Julian Day for a Unix timestamp
 * (seconds since 1.1.1970), or for the current day if no
 * timestamp is given. Either way, the time is regarded
 * as local time (not UTC).
 *
 * @param int $timestamp A unix timestamp to convert.
 * @return int A julian day number as integer.
 * @throws CalendarException
 *
 */
function unixtojd(int $timestamp = null): int
{
    error_clear_last();
    if ($timestamp !== null) {
        $result = \unixtojd($timestamp);
    } else {
        $result = \unixtojd();
    }
    if ($result === false) {
        throw CalendarException::createFromPhpError();
    }
    return $result;
}