| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194 |
- <?php
- /* vim: set expandtab tabstop=4 shiftwidth=4: */
- // +----------------------------------------------------------------------+
- // | PHP Version 4 |
- // +----------------------------------------------------------------------+
- // | Copyright (c) 1997-2003 The PHP Group |
- // +----------------------------------------------------------------------+
- // | This source file is subject to version 2.02 of the PHP license, |
- // | that is bundled with this package in the file LICENSE, and is |
- // | available at through the world-wide-web at |
- // | http://www.php.net/license/2_02.txt. |
- // | If you did not receive a copy of the PHP license and are unable to |
- // | obtain it through the world-wide-web, please send a note to |
- // | license@php.net so we can mail you a copy immediately. |
- // +----------------------------------------------------------------------+
- // | Authors: Baba Buehler <baba@babaz.com> |
- // | |
- // +----------------------------------------------------------------------+
- //
- // $Id: Date.php,v 1.22 2003/12/21 14:21:46 pajoye Exp $
- /**@#+
- * Include supporting classes
- */
- require_once 'Date/TimeZone.php';
- require_once 'Date/Calc.php';
- require_once 'Date/Span.php';
- /**@#-*/
- /**@#+
- * Output formats. Pass this to getDate().
- */
- /**
- * "YYYY-MM-DD HH:MM:SS"
- */
- define('DATE_FORMAT_ISO', 1);
- /**
- * "YYYYMMSSTHHMMSS(Z|(+/-)HHMM)?"
- */
- define('DATE_FORMAT_ISO_BASIC', 2);
- /**
- * "YYYY-MM-SSTHH:MM:SS(Z|(+/-)HH:MM)?"
- */
- define('DATE_FORMAT_ISO_EXTENDED', 3);
- /**
- * "YYYYMMDDHHMMSS"
- */
- define('DATE_FORMAT_TIMESTAMP', 4);
- /**
- * long int, seconds since the unix epoch
- */
- define('DATE_FORMAT_UNIXTIME', 5);
- /**@#-*/
- /**
- * Generic date handling class for PEAR.
- *
- * Generic date handling class for PEAR. Attempts to be time zone aware
- * through the Date::TimeZone class. Supports several operations from
- * Date::Calc on Date objects.
- *
- * @author Baba Buehler <baba@babaz.com>
- * @package Date
- * @access public
- */
- class Date
- {
- /**
- * the year
- * @var int
- */
- var $year;
- /**
- * the month
- * @var int
- */
- var $month;
- /**
- * the day
- * @var int
- */
- var $day;
- /**
- * the hour
- * @var int
- */
- var $hour;
- /**
- * the minute
- * @var int
- */
- var $minute;
- /**
- * the second
- * @var int
- */
- var $second;
- /**
- * timezone for this date
- * @var object Date_TimeZone
- */
- var $tz;
- /**
- * Constructor
- *
- * Creates a new Date Object initialized to the current date/time in the
- * system-default timezone by default. A date optionally
- * passed in may be in the ISO 8601, TIMESTAMP or UNIXTIME format,
- * or another Date object. If no date is passed, the current date/time
- * is used.
- *
- * @access public
- * @see setDate()
- * @param mixed $date optional - date/time to initialize
- * @return object Date the new Date object
- */
- function Date($date = null)
- {
- $this->tz = Date_TimeZone::getDefault();
- if (is_null($date)) {
- $this->setDate(date("Y-m-d H:i:s"));
- } elseif (is_object($date) &&
- ((get_class($date) == 'date') ||
- (is_subclass_of($date,'date')))
- ) {
- $this->copy($date);
- } else {
- $this->setDate($date);
- }
- }
- /**
- * Set the fields of a Date object based on the input date and format
- *
- * Set the fields of a Date object based on the input date and format,
- * which is specified by the DATE_FORMAT_* constants.
- *
- * @access public
- * @param string $date input date
- * @param int $format Optional format constant (DATE_FORMAT_*) of the input date.
- * This parameter isn't really needed anymore, but you could
- * use it to force DATE_FORMAT_UNIXTIME.
- */
- function setDate($date, $format = DATE_FORMAT_ISO)
- {
- if (
- preg_match('/^(\d{4})-?(\d{2})-?(\d{2})([T\s]?(\d{2}):?(\d{2}):?(\d{2})(Z|[\+\-]\d{2}:?\d{2})?)?$/i', $date, $regs)
- && $format != DATE_FORMAT_UNIXTIME) {
- // DATE_FORMAT_ISO, ISO_BASIC, ISO_EXTENDED, and TIMESTAMP
- // These formats are extremely close to each other. This regex
- // is very loose and accepts almost any butchered format you could
- // throw at it. e.g. 2003-10-07 19:45:15 and 2003-10071945:15
- // are the same thing in the eyes of this regex, even though the
- // latter is not a valid ISO 8601 date.
- $this->year = $regs[1];
- $this->month = $regs[2];
- $this->day = $regs[3];
- $this->hour = isset($regs[5])?$regs[5]:0;
- $this->minute = isset($regs[6])?$regs[6]:0;
- $this->second = isset($regs[7])?$regs[7]:0;
- // if an offset is defined, convert time to UTC
- // Date currently can't set a timezone only by offset,
- // so it has to store it as UTC
- if (isset($regs[8])) {
- $this->toUTCbyOffset($regs[8]);
- }
- } elseif (is_numeric($date)) {
- // UNIXTIME
- $this->setDate(date("Y-m-d H:i:s", $date));
- } else {
- // unknown format
- $this->year = 0;
- $this->month = 1;
- $this->day = 1;
- $this->hour = 0;
- $this->minute = 0;
- $this->second = 0;
- }
- }
- /**
- * Get a string (or other) representation of this date
- *
- * Get a string (or other) representation of this date in the
- * format specified by the DATE_FORMAT_* constants.
- *
- * @access public
- * @param int $format format constant (DATE_FORMAT_*) of the output date
- * @return string the date in the requested format
- */
- function getDate($format = DATE_FORMAT_ISO)
- {
- switch ($format) {
- case DATE_FORMAT_ISO:
- return $this->format("%Y-%m-%d %T");
- break;
- case DATE_FORMAT_ISO_BASIC:
- $format = "%Y%m%dT%H%M%S";
- if ($this->tz->getID() == 'UTC') {
- $format .= "Z";
- }
- return $this->format($format);
- break;
- case DATE_FORMAT_ISO_EXTENDED:
- $format = "%Y-%m-%dT%H:%M:%S";
- if ($this->tz->getID() == 'UTC') {
- $format .= "Z";
- }
- return $this->format($format);
- break;
- case DATE_FORMAT_TIMESTAMP:
- return $this->format("%Y%m%d%H%M%S");
- break;
- case DATE_FORMAT_UNIXTIME:
- return mktime($this->hour, $this->minute, $this->second, $this->month, $this->day, $this->year);
- break;
- }
- }
- /**
- * Copy values from another Date object
- *
- * Makes this Date a copy of another Date object.
- *
- * @access public
- * @param object Date $date Date to copy from
- */
- function copy($date)
- {
- $this->year = $date->year;
- $this->month = $date->month;
- $this->day = $date->day;
- $this->hour = $date->hour;
- $this->minute = $date->minute;
- $this->second = $date->second;
- $this->tz = $date->tz;
- }
- /**
- * Date pretty printing, similar to strftime()
- *
- * Formats the date in the given format, much like
- * strftime(). Most strftime() options are supported.<br><br>
- *
- * formatting options:<br><br>
- *
- * <code>%a </code> abbreviated weekday name (Sun, Mon, Tue) <br>
- * <code>%A </code> full weekday name (Sunday, Monday, Tuesday) <br>
- * <code>%b </code> abbreviated month name (Jan, Feb, Mar) <br>
- * <code>%B </code> full month name (January, February, March) <br>
- * <code>%C </code> century number (the year divided by 100 and truncated to an integer, range 00 to 99) <br>
- * <code>%d </code> day of month (range 00 to 31) <br>
- * <code>%D </code> same as "%m/%d/%y" <br>
- * <code>%e </code> day of month, single digit (range 0 to 31) <br>
- * <code>%E </code> number of days since unspecified epoch (integer, Date_Calc::dateToDays()) <br>
- * <code>%H </code> hour as decimal number (00 to 23) <br>
- * <code>%I </code> hour as decimal number on 12-hour clock (01 to 12) <br>
- * <code>%j </code> day of year (range 001 to 366) <br>
- * <code>%m </code> month as decimal number (range 01 to 12) <br>
- * <code>%M </code> minute as a decimal number (00 to 59) <br>
- * <code>%n </code> newline character (\n) <br>
- * <code>%O </code> dst-corrected timezone offset expressed as "+/-HH:MM" <br>
- * <code>%o </code> raw timezone offset expressed as "+/-HH:MM" <br>
- * <code>%p </code> either 'am' or 'pm' depending on the time <br>
- * <code>%P </code> either 'AM' or 'PM' depending on the time <br>
- * <code>%r </code> time in am/pm notation, same as "%I:%M:%S %p" <br>
- * <code>%R </code> time in 24-hour notation, same as "%H:%M" <br>
- * <code>%S </code> seconds as a decimal number (00 to 59) <br>
- * <code>%t </code> tab character (\t) <br>
- * <code>%T </code> current time, same as "%H:%M:%S" <br>
- * <code>%w </code> weekday as decimal (0 = Sunday) <br>
- * <code>%U </code> week number of current year, first sunday as first week <br>
- * <code>%y </code> year as decimal (range 00 to 99) <br>
- * <code>%Y </code> year as decimal including century (range 0000 to 9999) <br>
- * <code>%% </code> literal '%' <br>
- * <br>
- *
- * @access public
- * @param string format the format string for returned date/time
- * @return string date/time in given format
- */
- function format($format)
- {
- $output = "";
- for($strpos = 0; $strpos < strlen($format); $strpos++) {
- $char = substr($format,$strpos,1);
- if ($char == "%") {
- $nextchar = substr($format,$strpos + 1,1);
- switch ($nextchar) {
- case "a":
- $output .= Date_Calc::getWeekdayAbbrname($this->day,$this->month,$this->year);
- break;
- case "A":
- $output .= Date_Calc::getWeekdayFullname($this->day,$this->month,$this->year);
- break;
- case "b":
- $output .= Date_Calc::getMonthAbbrname($this->month);
- break;
- case "B":
- $output .= Date_Calc::getMonthFullname($this->month);
- break;
- case "C":
- $output .= sprintf("%02d",intval($this->year/100));
- break;
- case "d":
- $output .= sprintf("%02d",$this->day);
- break;
- case "D":
- $output .= sprintf("%02d/%02d/%02d",$this->month,$this->day,$this->year);
- break;
- case "e":
- $output .= $this->day * 1; // get rid of leading zero
- break;
- case "E":
- $output .= Date_Calc::dateToDays($this->day,$this->month,$this->year);
- break;
- case "H":
- $output .= sprintf("%02d", $this->hour);
- break;
- case "I":
- $hour = ($this->hour + 1) > 12 ? $this->hour - 12 : $this->hour;
- $output .= sprintf("%02d", $hour==0 ? 12 : $hour);
- break;
- case "j":
- $output .= Date_Calc::julianDate($this->day,$this->month,$this->year);
- break;
- case "m":
- $output .= sprintf("%02d",$this->month);
- break;
- case "M":
- $output .= sprintf("%02d",$this->minute);
- break;
- case "n":
- $output .= "\n";
- break;
- case "O":
- $offms = $this->tz->getOffset($this);
- $direction = $offms >= 0 ? "+" : "-";
- $offmins = abs($offms) / 1000 / 60;
- $hours = $offmins / 60;
- $minutes = $offmins % 60;
- $output .= sprintf("%s%02d:%02d", $direction, $hours, $minutes);
- break;
- case "o":
- $offms = $this->tz->getRawOffset($this);
- $direction = $offms >= 0 ? "+" : "-";
- $offmins = abs($offms) / 1000 / 60;
- $hours = $offmins / 60;
- $minutes = $offmins % 60;
- $output .= sprintf("%s%02d:%02d", $direction, $hours, $minutes);
- break;
- case "p":
- $output .= $this->hour >= 12 ? "pm" : "am";
- break;
- case "P":
- $output .= $this->hour >= 12 ? "PM" : "AM";
- break;
- case "r":
- $hour = ($this->hour + 1) > 12 ? $this->hour - 12 : $this->hour;
- $output .= sprintf("%02d:%02d:%02d %s", $hour==0 ? 12 : $hour, $this->minute, $this->second, $this->hour >= 12 ? "PM" : "AM");
- break;
- case "R":
- $output .= sprintf("%02d:%02d", $this->hour, $this->minute);
- break;
- case "S":
- $output .= sprintf("%02d", $this->second);
- break;
- case "t":
- $output .= "\t";
- break;
- case "T":
- $output .= sprintf("%02d:%02d:%02d", $this->hour, $this->minute, $this->second);
- break;
- case "w":
- $output .= Date_Calc::dayOfWeek($this->day,$this->month,$this->year);
- break;
- case "U":
- $output .= Date_Calc::weekOfYear($this->day,$this->month,$this->year);
- break;
- case "y":
- $output .= substr($this->year,2,2);
- break;
- case "Y":
- $output .= $this->year;
- break;
- case "Z":
- $output .= $this->tz->inDaylightTime($this) ? $this->tz->getDSTShortName() : $this->tz->getShortName();
- break;
- case "%":
- $output .= "%";
- break;
- default:
- $output .= $char.$nextchar;
- }
- $strpos++;
- } else {
- $output .= $char;
- }
- }
- return $output;
- }
- /**
- * Get this date/time in Unix time() format
- *
- * Get a representation of this date in Unix time() format. This may only be
- * valid for dates from 1970 to ~2038.
- *
- * @access public
- * @return int number of seconds since the unix epoch
- */
- function getTime()
- {
- return $this->getDate(DATE_FORMAT_UNIXTIME);
- }
- /**
- * Sets the time zone of this Date
- *
- * Sets the time zone of this date with the given
- * Date_TimeZone object. Does not alter the date/time,
- * only assigns a new time zone. For conversion, use
- * convertTZ().
- *
- * @access public
- * @param object Date_TimeZone $tz the Date_TimeZone object to use, if called
- * with a paramater that is not a Date_TimeZone object, will fall through to
- * setTZbyID().
- */
- function setTZ($tz)
- {
- if(is_a($tz, 'date_timezone')) {
- $this->tz = $tz;
- } else {
- $this->setTZbyID($tz);
- }
- }
- /**
- * Sets the time zone of this date with the given time zone id
- *
- * Sets the time zone of this date with the given
- * time zone id, or to the system default if the
- * given id is invalid. Does not alter the date/time,
- * only assigns a new time zone. For conversion, use
- * convertTZ().
- *
- * @access public
- * @param string id a time zone id
- */
- function setTZbyID($id)
- {
- if (Date_TimeZone::isValidID($id)) {
- $this->tz = new Date_TimeZone($id);
- } else {
- $this->tz = Date_TimeZone::getDefault();
- }
- }
- /**
- * Tests if this date/time is in DST
- *
- * Returns true if daylight savings time is in effect for
- * this date in this date's time zone. See Date_TimeZone::inDaylightTime()
- * for compatability information.
- *
- * @access public
- * @return boolean true if DST is in effect for this date
- */
- function inDaylightTime()
- {
- return $this->tz->inDaylightTime($this);
- }
- /**
- * Converts this date to UTC and sets this date's timezone to UTC
- *
- * Converts this date to UTC and sets this date's timezone to UTC
- *
- * @access public
- */
- function toUTC()
- {
- if ($this->tz->getOffset($this) > 0) {
- $this->subtractSeconds(intval($this->tz->getOffset($this) / 1000));
- } else {
- $this->addSeconds(intval(abs($this->tz->getOffset($this)) / 1000));
- }
- $this->tz = new Date_TimeZone('UTC');
- }
- /**
- * Converts this date to a new time zone
- *
- * Converts this date to a new time zone.
- * WARNING: This may not work correctly if your system does not allow
- * putenv() or if localtime() does not work in your environment. See
- * Date::TimeZone::inDaylightTime() for more information.
- *
- * @access public
- * @param object Date_TimeZone $tz the Date::TimeZone object for the conversion time zone
- */
- function convertTZ($tz)
- {
- // convert to UTC
- if ($this->tz->getOffset($this) > 0) {
- $this->subtractSeconds(intval(abs($this->tz->getOffset($this)) / 1000));
- } else {
- $this->addSeconds(intval(abs($this->tz->getOffset($this)) / 1000));
- }
- // convert UTC to new timezone
- if ($tz->getOffset($this) > 0) {
- $this->addSeconds(intval(abs($tz->getOffset($this)) / 1000));
- } else {
- $this->subtractSeconds(intval(abs($tz->getOffset($this)) / 1000));
- }
- $this->tz = $tz;
- }
- /**
- * Converts this date to a new time zone, given a valid time zone ID
- *
- * Converts this date to a new time zone, given a valid time zone ID
- * WARNING: This may not work correctly if your system does not allow
- * putenv() or if localtime() does not work in your environment. See
- * Date::TimeZone::inDaylightTime() for more information.
- *
- * @access public
- * @param string id a time zone id
- */
- function convertTZbyID($id)
- {
- if (Date_TimeZone::isValidID($id)) {
- $tz = new Date_TimeZone($id);
- } else {
- $tz = Date_TimeZone::getDefault();
- }
- $this->convertTZ($tz);
- }
- function toUTCbyOffset($offset)
- {
- if ($offset == "Z" || $offset == "+00:00" || $offset == "+0000") {
- $this->toUTC();
- return true;
- }
- if (preg_match('/([\+\-])(\d{2}):?(\d{2})/', $offset, $regs)) {
- // convert offset to seconds
- $hours = (int) isset($regs[2])?$regs[2]:0;
- $mins = (int) isset($regs[3])?$regs[3]:0;
- $offset = ($hours * 3600) + ($mins * 60);
- if (isset($regs[1]) && $regs[1] == "-") {
- $offset *= -1;
- }
- if ($offset > 0) {
- $this->subtractSeconds(intval($offset));
- } else {
- $this->addSeconds(intval(abs($offset)));
- }
- $this->tz = new Date_TimeZone('UTC');
- return true;
- }
- return false;
- }
- /**
- * Adds a given number of seconds to the date
- *
- * Adds a given number of seconds to the date
- *
- * @access public
- * @param int $sec the number of seconds to add
- */
- function addSeconds($sec)
- {
- $this->addSpan(new Date_Span((integer)$sec));
- }
- /**
- * Adds a time span to the date
- *
- * Adds a time span to the date
- *
- * @access public
- * @param object Date_Span $span the time span to add
- */
- function addSpan($span)
- {
- $this->second += $span->second;
- if ($this->second >= 60) {
- $this->minute++;
- $this->second -= 60;
- }
- $this->minute += $span->minute;
- if ($this->minute >= 60) {
- $this->hour++;
- if ($this->hour >= 24) {
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::nextDay($this->day, $this->month, $this->year), "%04s%02s%02s");
- $this->hour -= 24;
- }
- $this->minute -= 60;
- }
- $this->hour += $span->hour;
- if ($this->hour >= 24) {
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::nextDay($this->day, $this->month, $this->year), "%04s%02s%02s");
- $this->hour -= 24;
- }
- $d = Date_Calc::dateToDays($this->day, $this->month, $this->year);
- $d += $span->day;
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::daysToDate($d), "%04s%02s%02s");
- $this->year = intval($this->year);
- $this->month = intval($this->month);
- $this->day = intval($this->day);
- }
- /**
- * Subtracts a given number of seconds from the date
- *
- * Subtracts a given number of seconds from the date
- *
- * @access public
- * @param int $sec the number of seconds to subtract
- */
- function subtractSeconds($sec)
- {
- $this->subtractSpan(new Date_Span($sec));
- }
- /**
- * Subtracts a time span to the date
- *
- * Subtracts a time span to the date
- *
- * @access public
- * @param object Date_Span $span the time span to subtract
- */
- function subtractSpan($span)
- {
- $this->second -= $span->second;
- if ($this->second < 0) {
- $this->minute--;
- $this->second += 60;
- }
- $this->minute -= $span->minute;
- if ($this->minute < 0) {
- $this->hour--;
- if ($this->hour < 0) {
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::prevDay($this->day, $this->month, $this->year), "%04s%02s%02s");
- $this->hour += 24;
- }
- $this->minute += 60;
- }
- $this->hour -= $span->hour;
- if ($this->hour < 0) {
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::prevDay($this->day, $this->month, $this->year), "%04s%02s%02s");
- $this->hour += 24;
- }
- $d = Date_Calc::dateToDays($this->day, $this->month, $this->year);
- $d -= $span->day;
- list($this->year, $this->month, $this->day) =
- sscanf(Date_Calc::daysToDate($d), "%04s%02s%02s");
- $this->year = intval($this->year);
- $this->month = intval($this->month);
- $this->day = intval($this->day);
- }
- /**
- * Compares two dates
- *
- * Compares two dates. Suitable for use
- * in sorting functions.
- *
- * @access public
- * @param object Date $d1 the first date
- * @param object Date $d2 the second date
- * @return int 0 if the dates are equal, -1 if d1 is before d2, 1 if d1 is after d2
- */
- function compare($d1, $d2)
- {
- $d1->convertTZ(new Date_TimeZone('UTC'));
- $d2->convertTZ(new Date_TimeZone('UTC'));
- $days1 = Date_Calc::dateToDays($d1->day, $d1->month, $d1->year);
- $days2 = Date_Calc::dateToDays($d2->day, $d2->month, $d2->year);
- if ($days1 < $days2) return -1;
- if ($days1 > $days2) return 1;
- if ($d1->hour < $d2->hour) return -1;
- if ($d1->hour > $d2->hour) return 1;
- if ($d1->minute < $d2->minute) return -1;
- if ($d1->minute > $d2->minute) return 1;
- if ($d1->second < $d2->second) return -1;
- if ($d1->second > $d2->second) return 1;
- return 0;
- }
- /**
- * Test if this date/time is before a certain date/time
- *
- * Test if this date/time is before a certain date/time
- *
- * @access public
- * @param object Date $when the date to test against
- * @return boolean true if this date is before $when
- */
- function before($when)
- {
- if (Date::compare($this,$when) == -1) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Test if this date/time is after a certian date/time
- *
- * Test if this date/time is after a certian date/time
- *
- * @access public
- * @param object Date $when the date to test against
- * @return boolean true if this date is after $when
- */
- function after($when)
- {
- if (Date::compare($this,$when) == 1) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Test if this date/time is exactly equal to a certian date/time
- *
- * Test if this date/time is exactly equal to a certian date/time
- *
- * @access public
- * @param object Date $when the date to test against
- * @return boolean true if this date is exactly equal to $when
- */
- function equals($when)
- {
- if (Date::compare($this,$when) == 0) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Determine if this date is in the future
- *
- * Determine if this date is in the future
- *
- * @access public
- * @return boolean true if this date is in the future
- */
- function isFuture()
- {
- $now = new Date();
- if ($this->after($now)) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Determine if this date is in the past
- *
- * Determine if this date is in the past
- *
- * @access public
- * @return boolean true if this date is in the past
- */
- function isPast()
- {
- $now = new Date();
- if ($this->before($now)) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Determine if the year in this date is a leap year
- *
- * Determine if the year in this date is a leap year
- *
- * @access public
- * @return boolean true if this year is a leap year
- */
- function isLeapYear()
- {
- return Date_Calc::isLeapYear($this->year);
- }
- /**
- * Get the Julian date for this date
- *
- * Get the Julian date for this date
- *
- * @access public
- * @return int the Julian date
- */
- function getJulianDate()
- {
- return Date_Calc::julianDate($this->day, $this->month, $this->year);
- }
- /**
- * Gets the day of the week for this date
- *
- * Gets the day of the week for this date (0=Sunday)
- *
- * @access public
- * @return int the day of the week (0=Sunday)
- */
- function getDayOfWeek()
- {
- return Date_Calc::dayOfWeek($this->day, $this->month, $this->year);
- }
- /**
- * Gets the week of the year for this date
- *
- * Gets the week of the year for this date
- *
- * @access public
- * @return int the week of the year
- */
- function getWeekOfYear()
- {
- return Date_Calc::weekOfYear($this->day, $this->month, $this->year);
- }
- /**
- * Gets the quarter of the year for this date
- *
- * Gets the quarter of the year for this date
- *
- * @access public
- * @return int the quarter of the year (1-4)
- */
- function getQuarterOfYear()
- {
- return Date_Calc::quarterOfYear($this->day, $this->month, $this->year);
- }
- /**
- * Gets number of days in the month for this date
- *
- * Gets number of days in the month for this date
- *
- * @access public
- * @return int number of days in this month
- */
- function getDaysInMonth()
- {
- return Date_Calc::daysInMonth($this->month, $this->year);
- }
- /**
- * Gets the number of weeks in the month for this date
- *
- * Gets the number of weeks in the month for this date
- *
- * @access public
- * @return int number of weeks in this month
- */
- function getWeeksInMonth()
- {
- return Date_Calc::weeksInMonth($this->month, $this->year);
- }
- /**
- * Gets the full name or abbriviated name of this weekday
- *
- * Gets the full name or abbriviated name of this weekday
- *
- * @access public
- * @param boolean $abbr abbrivate the name
- * @return string name of this day
- */
- function getDayName($abbr = false)
- {
- if ($abbr) {
- return Date_Calc::getWeekdayAbbrname($this->day, $this->month, $this->year);
- } else {
- return Date_Calc::getWeekdayFullname($this->day, $this->month, $this->year);
- }
- }
- /**
- * Gets the full name or abbriviated name of this month
- *
- * Gets the full name or abbriviated name of this month
- *
- * @access public
- * @param boolean $abbr abbrivate the name
- * @return string name of this month
- */
- function getMonthName($abbr = false)
- {
- if ($abbr) {
- return Date_Calc::getMonthAbbrname($this->month);
- } else {
- return Date_Calc::getMonthFullname($this->month);
- }
- }
- /**
- * Get a Date object for the day after this one
- *
- * Get a Date object for the day after this one.
- * The time of the returned Date object is the same as this time.
- *
- * @access public
- * @return object Date Date representing the next day
- */
- function getNextDay()
- {
- $day = Date_Calc::nextDay($this->day, $this->month, $this->year, "%Y-%m-%d");
- $date = sprintf("%s %02d:%02d:%02d", $day, $this->hour, $this->minute, $this->second);
- $newDate = new Date();
- $newDate->setDate($date);
- return $newDate;
- }
- /**
- * Get a Date object for the day before this one
- *
- * Get a Date object for the day before this one.
- * The time of the returned Date object is the same as this time.
- *
- * @access public
- * @return object Date Date representing the previous day
- */
- function getPrevDay()
- {
- $day = Date_Calc::prevDay($this->day, $this->month, $this->year, "%Y-%m-%d");
- $date = sprintf("%s %02d:%02d:%02d", $day, $this->hour, $this->minute, $this->second);
- $newDate = new Date();
- $newDate->setDate($date);
- return $newDate;
- }
- /**
- * Get a Date object for the weekday after this one
- *
- * Get a Date object for the weekday after this one.
- * The time of the returned Date object is the same as this time.
- *
- * @access public
- * @return object Date Date representing the next weekday
- */
- function getNextWeekday()
- {
- $day = Date_Calc::nextWeekday($this->day, $this->month, $this->year, "%Y-%m-%d");
- $date = sprintf("%s %02d:%02d:%02d", $day, $this->hour, $this->minute, $this->second);
- $newDate = new Date();
- $newDate->setDate($date);
- return $newDate;
- }
- /**
- * Get a Date object for the weekday before this one
- *
- * Get a Date object for the weekday before this one.
- * The time of the returned Date object is the same as this time.
- *
- * @access public
- * @return object Date Date representing the previous weekday
- */
- function getPrevWeekday()
- {
- $day = Date_Calc::prevWeekday($this->day, $this->month, $this->year, "%Y-%m-%d");
- $date = sprintf("%s %02d:%02d:%02d", $day, $this->hour, $this->minute, $this->second);
- $newDate = new Date();
- $newDate->setDate($date);
- return $newDate;
- }
- /**
- * Returns the year field of the date object
- *
- * Returns the year field of the date object
- *
- * @access public
- * @return int the year
- */
- function getYear()
- {
- return $this->year;
- }
- /**
- * Returns the month field of the date object
- *
- * Returns the month field of the date object
- *
- * @access public
- * @return int the month
- */
- function getMonth()
- {
- return $this->month;
- }
- /**
- * Returns the day field of the date object
- *
- * Returns the day field of the date object
- *
- * @access public
- * @return int the day
- */
- function getDay()
- {
- return $this->day;
- }
- /**
- * Returns the hour field of the date object
- *
- * Returns the hour field of the date object
- *
- * @access public
- * @return int the hour
- */
- function getHour()
- {
- return $this->hour;
- }
- /**
- * Returns the minute field of the date object
- *
- * Returns the minute field of the date object
- *
- * @access public
- * @return int the minute
- */
- function getMinute()
- {
- return $this->minute;
- }
- /**
- * Returns the second field of the date object
- *
- * Returns the second field of the date object
- *
- * @access public
- * @return int the second
- */
- function getSecond()
- {
- return $this->second;
- }
- /**
- * Set the year field of the date object
- *
- * Set the year field of the date object, invalid years (not 0-9999) are set to 0.
- *
- * @access public
- * @param int $y the year
- */
- function setYear($y)
- {
- if ($y < 0 || $y > 9999) {
- $this->year = 0;
- } else {
- $this->year = $y;
- }
- }
- /**
- * Set the month field of the date object
- *
- * Set the month field of the date object, invalid months (not 1-12) are set to 1.
- *
- * @access public
- * @param int $m the month
- */
- function setMonth($m)
- {
- if ($m < 1 || $m > 12) {
- $this->month = 1;
- } else {
- $this->month = $m;
- }
- }
- /**
- * Set the day field of the date object
- *
- * Set the day field of the date object, invalid days (not 1-31) are set to 1.
- *
- * @access public
- * @param int $d the day
- */
- function setDay($d)
- {
- if ($d > 31 || $d < 1) {
- $this->day = 1;
- } else {
- $this->day = $d;
- }
- }
- /**
- * Set the hour field of the date object
- *
- * Set the hour field of the date object in 24-hour format.
- * Invalid hours (not 0-23) are set to 0.
- *
- * @access public
- * @param int $h the hour
- */
- function setHour($h)
- {
- if ($h > 23 || $h < 0) {
- $this->hour = 0;
- } else {
- $this->hour = $h;
- }
- }
- /**
- * Set the minute field of the date object
- *
- * Set the minute field of the date object, invalid minutes (not 0-59) are set to 0.
- *
- * @access public
- * @param int $m the minute
- */
- function setMinute($m)
- {
- if ($m > 59 || $m < 0) {
- $this->minute = 0;
- } else {
- $this->minute = $m;
- }
- }
- /**
- * Set the second field of the date object
- *
- * Set the second field of the date object, invalid seconds (not 0-59) are set to 0.
- *
- * @access public
- * @param int $s the second
- */
- function setSecond($s) {
- if ($s > 59 || $s < 0) {
- $this->second = 0;
- } else {
- $this->second = $s;
- }
- }
- } // Date
- //
- // END
- ?>
|