lsolesen\pel\PelEntryTime::convertUnixToJd PHP 메소드

convertUnixToJd() 공개 메소드

Converts a UNIX timestamp to a Julian Day count.
public convertUnixToJd ( integer $timestamp ) : integer
$timestamp integer the timestamp.
리턴 integer the Julian Day count.
    public function convertUnixToJd($timestamp)
    {
        return (int) (floor($timestamp / 86400) + 2440588);
    }