A fast and light-weight component library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1185 lines
50 KiB

<?php
namespace Twister;
use \DateTime; // http://php.net/manual/en/class.datetime.php
use \DateInterval; // http://php.net/manual/en/class.dateinterval.php
use \DateTimeZone; // http://php.net/manual/en/class.datetimezone.php
use \ArrayAccess; // http://php.net/manual/en/class.arrayaccess.php Interface to provide accessing objects as arrays.
use \IteratorAggregate; // http://php.net/manual/en/class.iteratoraggregate.php Interface to create an external Iterator.
use \Closure;
/*
use ArrayAccess; // http://php.net/manual/en/class.arrayaccess.php Interface to provide accessing objects as arrays.
use ArrayIterator; // http://php.net/manual/en/class.arrayiterator.php This iterator allows to unset and modify values and keys while iterating over Arrays and Objects.
use Countable; // http://php.net/manual/en/class.countable.php Classes implementing Countable can be used with the count() function.
use IteratorAggregate; // http://php.net/manual/en/class.iteratoraggregate.php Interface to create an external Iterator.
use Exception; // http://php.net/manual/en/class.exception.php Exception is the base class for all Exceptions in PHP 5, and the base class for all user exceptions in PHP 7.
use InvalidArgumentException; // http://php.net/manual/en/class.invalidargumentexception.php Exception thrown if an argument is not of the expected type.
use OutOfBoundsException; // http://php.net/manual/en/class.outofboundsexception.php Exception thrown if a value is not a valid key. This represents errors that cannot be detected at compile time.
use OutOfRangeException; // http://php.net/manual/en/class.outofrangeexception.php Exception thrown when an illegal index was requested. This represents errors that should be detected at compile time.
use BadMethodCallException; // http://php.net/manual/en/class.badmethodcallexception.php Exception thrown if a callback refers to an undefined method or if some arguments are missing.
use LengthException; // http://php.net/manual/en/class.lengthexception.php Exception thrown if a length is invalid.
use LogicException; // http://php.net/manual/en/class.logicexception.php Exception that represents error in the program logic. This kind of exception should lead directly to a fix in your code.
use DomainException; // http://php.net/manual/en/class.domainexception.php Exception thrown if a value does not adhere to a defined valid data domain.
use RangeException; // http://php.net/manual/en/class.rangeexception.php Exception thrown to indicate range errors during program execution. Normally this means there was an arithmetic error other than under/overflow. This is the runtime version of DomainException.
use UnexpectedValueException; // http://php.net/manual/en/class.unexpectedvalueexception.php Exception thrown if a value does not match with a set of values. Typically this happens when a function calls another function and expects the return value to be of a certain type or value not including arithmetic or buffer related errors.
use OverflowException; // http://php.net/manual/en/class.overflowexception.php Exception thrown when adding an element to a full container.
use UnderflowException; // http://php.net/manual/en/class.underflowexception.php Exception thrown when performing an invalid operation on an empty container, such as removing an element.
*/
class Date implements ArrayAccess, IteratorAggregate
{
protected $date = null;
public static $utc = null;
public static $p1d = null;
/**
* Create a new Twister\Date instance.
*
* @link http://php.net/manual/en/datetime.construct.php
*
* @param \DateTime|string|null $date
*/
public function __construct($date = 'now')
{
if (is_string($date))
{
$this->date = new \DateTime($date, self::$utc);
}
else if ($date instanceof \DateTime)
{
$this->date = $date;
}
else if (is_object($date))
{
$this->date = new \DateTime((string) $date, self::$utc);
}
else if ($date === null)
{
$this->date = new \DateTime('now', self::$utc);
}
else if (is_array($date))
{
throw new InvalidArgumentException('Array constructor not implemented');
}
else
{
throw new InvalidArgumentException(sprintf(
'Invalid type passed to Date constructor; expecting a string or DateTime object, received "%s"; use normalize() to create Date objects from various formats',
(is_object($date) ? get_class($date) : gettype($date))
));
}
}
/**
* Returns the value in $str.
*
* @return string The current value of the $str property
*/
public function __toString()
{
return $this->date->format('Y-m-d');
}
/**
* Returns a formatted string
*
* @return string
*/
public function __invoke($format = 'Y-m-d')
{
return $this->date->format($format);
}
/**
* Implements IteratorAggregate
*
* @link http://php.net/manual/en/class.iteratoraggregate.php
*
* @return \Twister\DatePeriod
*/
public function getIterator()
{
return new \Twister\DatePeriod($this);
}
/**
* Gets the date object
*/
public function getDate()
{
return $this->date;
}
/**
* Returns the difference between two dates in days
*/
public function days($date = null)
{
return is_string($date) ? (new \DateTime($date, self::$utc))->diff($this->date)->days : $date->diff($this->date)->days;
}
/**
* Returns the difference between two dates
*
* @link http://php.net/manual/en/datetime.diff.php
*
*/
public function diff($date = 'now')
{
if ($date instanceof static)
return $this->date->diff($date->date);
else if ($date instanceof \DateTime)
return $this->date->diff($date);
else if (is_string($date))
return $this->date->diff(new \DateTime($date, self::$utc));
// return is_string($date) ? (new \DateTime($date, self::$utc))->diff($this->date)->days : $date->diff($this->date)->days;
}
/**
* Wrapper around \DateTime->setDate() for the current date
*
* @link http://php.net/manual/en/datetime.setdate.php
*
* `Resets the current date of the DateTime object to a different date.`
*
* @param int|string $param1
* @param int|null $param2
* @param int|null $param3
* @return $this
*/
public function setDate($param1, $param2 = null, $param3 = null)
{
if (is_string($param1) && $param2 === null && $param3 === null)
{
if (preg_match('~(\d\d\d\d)-(\d\d)-(\d\d)~', $param1, $values) === 1)
{
$this->date->setDate($values[1], $values[2], $values[3]);
}
else
{
throw new InvalidArgumentException("Invalid string format `{$param1}` passed to setDate()");
}
}
else if (is_numeric($param1) && is_numeric($param2) && is_numeric($param3))
{
$this->date->setDate($param1, $param2, $param3);
}
else if (($param1 instanceof \DateTime || $param1 instanceof \Twister\DateTime) && $param2 === null && $param3 === null)
{
$this->date = new \DateTime($param1->format('Y-m-d'), self::$utc);
}
else if (is_object($param1) && $param2 === null && $param3 === null)
{
if ( ! method_exists($param1, '__toString'))
throw new InvalidArgumentException('Object passed to setDate() must have a __toString method');
$this->date = new \DateTime((string) $param1, self::$utc);
}
else
{
throw new InvalidArgumentException(sprintf(
'Invalid type passed to setDate(), received "%s"',
(is_object($param1) ? get_class($param1) : gettype($param1))
));
}
return $this;
}
/**
* Wrapper around \DateTime->setTime() for the current time
*
* @link http://php.net/manual/en/datetime.settime.php
*
* `Resets the current time of the DateTime object to a different time.`
*
* @param int|string $param1
* @param int|null $param2
* @param int|null $param3
* @return $this
*/
public function setTime($param1, $param2 = null, $param3 = null)
{
if (is_string($param1) && $param2 === null && $param3 === null)
{
if (preg_match('~(\d\d):(\d\d):(\d\d)~', $param1, $values) === 1)
{
$this->date->setTime($values[1], $values[2], $values[3]);
return $this;
}
else
{
throw new InvalidArgumentException("Invalid string format `{$param1}` passed to setTime(); expecting `HH:MM:SS`");
}
}
$this->date->setTime($param1, $param2, $param3);
return $this;
}
/**
* Sets the current date timezone
*
* @link http://php.net/manual/en/datetime.settimezone.php
*
* @param string|DateTimeZone $timezone
* @return $this
*/
public function setTimezone($timezone = null)
{
$this->date->setTimezone($timezone === null ? self::$utc : is_string($timezone) ? ($timezone === 'UTC' ? self::$utc : new \DateTimeZone($timezone)) : ($timezone instanceof \DateTimeZone ? $timezone : $timezone->getTimezone()));
return $this;
}
/**
* Sets the date and time based on a Unix timestamp.
*
* @link http://php.net/manual/en/datetime.settimestamp.php
*
* @param int $unixtimestamp
* @return $this
*/
public function setTimestamp($unixtimestamp)
{
$this->date->setTimestamp($unixtimestamp);
return $this;
}
/**
* Wrapper for DateTime::getTimestamp()
*
* `Gets the Unix timestamp.`
*
* @link http://php.net/manual/en/datetime.gettimestamp.php
*
* `Returns the Unix timestamp representing the date.`
*/
public function getTimestamp()
{
return $this->date->getTimestamp();
}
/**
* Wrapper for DateTime::getOffset()
*
* `Returns the timezone offset.`
*
* @link http://php.net/manual/en/datetime.getoffset.php
*
* `Returns the timezone offset in seconds from UTC on success or FALSE on failure.`
*/
public function getOffset()
{
return $this->date->getOffset();
}
/**
* Wrapper around \DateTime->add()
*
* @link http://php.net/manual/en/datetime.add.php
* @link http://php.net/manual/en/class.dateinterval.php
* @link http://php.net/manual/en/dateinterval.construct.php
* @link https://en.wikipedia.org/wiki/Iso8601#Durations
*
* Simple examples:
* Two days is P2D.
* Two seconds is PT2S.
* Six years and five minutes is P6YT5M.
*
* Formats are based on the » ISO 8601 duration specification.
*
* @param string $interval_spec The character encoding
* @return new Twister\Date instance or false on failure
*/
public function add($interval_spec = null)
{
$this->date->add($interval_spec === null ? self::$p1d : is_string($interval_spec) ? ($interval_spec === 'P1D' ? self::$p1d : new \DateInterval($interval_spec)) : $interval_spec);
return $this;
}
/**
* Wrapper around \DateTime->sub()
*
* @link http://php.net/manual/en/datetime.sub.php
* @link http://php.net/manual/en/class.dateinterval.php
* @link http://php.net/manual/en/dateinterval.construct.php
* @link https://en.wikipedia.org/wiki/Iso8601#Durations
*
* Simple examples:
* Two days is P2D.
* Two seconds is PT2S.
* Six years and five minutes is P6YT5M.
*
* Formats are based on the » ISO 8601 duration specification.
*
* @param string $interval_spec The character encoding
* @return new Twister\Date instance or false on failure
*/
public function sub($interval_spec = null)
{
$this->date->sub($interval_spec === null ? self::$p1d : is_string($interval_spec) ? ($interval_spec === 'P1D' ? self::$p1d : new \DateInterval($interval_spec)) : $interval_spec);
return $this;
}
/**
* Wrapper around \DateTime->format()
*
* @link http://php.net/manual/en/datetime.format.php
*
* @return string
*/
public function format($format = 'Y-m-d')
{
return $this->date->format($format);
}
/**
* Wrapper around \DateTime->modify()
*
* @link http://php.net/manual/en/datetime.modify.php
*
* `Alter the timestamp of a DateTime object by incrementing or decrementing in a format accepted by strtotime().`
*
* @param string $modify A date/time string.
* @return $this
*/
public function modify($modify = '+1 day')
{
$this->date->modify($modify);
return $this;
}
/**
* Create a Twister\Date object or returns null
*
* @link http://php.net/manual/en/datetime.construct.php
*
*
* @param mixed $str Value to modify, after being cast to string
* @param string $encoding The character encoding
* @return new Twister\Date instance or false on failure
* @throws \InvalidArgumentException if an array or object without a
* __toString method is passed as the first argument
*/
public static function create($time = 'now', $timezone = null)
{
return new static(new \DateTime($time, $timezone === null ? self::$utc : (is_string($timezone) ? new \DateTimeZone($timezone) : $timezone)));
}
/**
* Check if a given value or values are valid
*
* @link http://php.net/manual/en/function.checkdate.php
*
* Date::check('0000-00-00') === false
* Date::check('2017-08-05') === true
* Date::check('2017', '08, '05') === true
* Date::check(['2017', '08, '05']) === true
* Date::check([2017, 8, 5]) === true
* Date::check(['year' => 2017, 'month' => 8, 'day' => 5]) === true
* Date::check([8, 5, 2017]) === true - year is 3rd array member, same as `checkdate` and MUST be over 100
* Date::check([30, 4, 2017]) === false - year is 3rd array member, same as `checkdate` BUT `day` MUST be 2nd param and `month` MUST be 3rd param like `checkdate()`
*
* @param mixed $str Value to modify, after being cast to string
* @return new Twister\Date instance or false on failure
* @throws \InvalidArgumentException if an array or object without a
* __toString method is passed as the first argument
*/
public static function check(...$params)
{
return self::normalize(...$params) !== false;
}
/**
* Normalize a given value or values to MySQL date format (YYYY-MM-DD)
*
* @link http://php.net/manual/en/function.checkdate.php
*
* Date::check('0000-00-00') === false
* Date::check('2017-08-05') === true
* Date::check('2017', '08, '05') === true
* Date::check(['2017', '08, '05']) === true
* Date::check([2017, 8, 5]) === true
* Date::check(['year' => 2017, 'month' => 8, 'day' => 5]) === true
* Date::check([8, 5, 2017]) === true - year is 3rd array member, same as `checkdate` and MUST be over 100
* Date::check([30, 4, 2017]) === false - year is 3rd array member, same as `checkdate` BUT `day` MUST be 2nd param and `month` MUST be 3rd param like `checkdate()`
*
* @param mixed $str Value to modify, after being cast to string
* @return new Twister\Date instance or false on failure
* @throws \InvalidArgumentException if an array or object without a
* __toString method is passed as the first argument
*/
public static function normalize(...$params)
{
switch (count($params))
{
case 2:
if ( ! is_bool($params[1]))
{
if (is_string($params[1])) // $params[1] can be a format like 'Y-m-d h:i' or whatever, we need to `extract` the date component to match '~^...$~' below
{
// TODO: extract date from format
}
return false;
}
else
{
if ($params[1] === true)
{
$date = $params[0];
if (is_string($date) && $date === '0000-00-00')
{
return $date; // `true` allows 0000-00-00
}
}
}
// fallthrough
case 1:
$date = $params[0];
if (is_string($date))
{
if (preg_match('~^([1-9]\d\d\d)-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$~', $date, $matches) === 1)
{
return checkdate($matches[2], $matches[3], $matches[1]) ? $date : false; // checkdate(month, day, year)
}
else if (preg_match('~([1-9]\d\d\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])~', $date, $matches) === 1) // removed the ~^ ... $~ first & last matches! Also added more delimeters
{
$date = $matches[1] . '-' . $matches[2] . '-' . $matches[3];
return checkdate($matches[2], $matches[3], $matches[1]) ? $date : false; // checkdate(month, day, year)
}
else
{
// ... can we match other date formats?
// http://php.net/manual/en/function.strtotime.php
return false;
}
}
else if (is_array($date))
{
if (isset($date[0]) && isset($date[1]) && isset($date[2]))
{
$year = $date[0]; // $date[0] could be month
$month = $date[1]; // $date[1] could be day
$day = $date[2]; // $date[2] could be year
if (is_numeric($year) && is_numeric($month) && is_numeric($day))
{
if ($day >= 1000 && $year <= 12 && $month <= 31)
{
// We switch the year, month, day to month, day, year ... ie. US format
$year = $date[2];
$month = $date[0];
$day = $date[1];
}
}
else
{
return false;
}
}
else if (isset($date['year']) && isset($date['month']) && isset($date['day']))
{
$year = $date['year'];
$month = $date['month'];
$day = $date['day'];
if ( ! is_numeric($year) || ! is_numeric($day))
{
return false;
}
if ( ! is_numeric($month))
{
if (is_string($month))
{
switch (strtolower($month))
{
case 'jan'; $month = 1; break;
case 'feb'; $month = 2; break;
case 'mar'; $month = 3; break;
case 'apr'; $month = 4; break;
case 'may'; $month = 5; break;
case 'jun'; $month = 6; break;
case 'jul'; $month = 7; break;
case 'aug'; $month = 8; break;
case 'sep'; $month = 9; break;
case 'oct'; $month = 10; break;
case 'nov'; $month = 11; break;
case 'dec'; $month = 12; break;
case 'january'; $month = 1; break;
case 'february'; $month = 2; break;
case 'march'; $month = 3; break;
case 'april'; $month = 4; break;
// case 'may'; $month = 5; break; // same
case 'june'; $month = 6; break;
case 'july'; $month = 7; break;
case 'august'; $month = 8; break;
case 'september'; $month = 9; break;
case 'october'; $month = 10; break;
case 'november'; $month = 11; break;
case 'december'; $month = 12; break;
default: return false;
}
}
else
{
return false;
}
}
}
else if (isset($date['tm_year']) && isset($date['tm_mon']) && isset($date['tm_mday']))
{
// extract a date from strptime()
// http://php.net/manual/en/function.strptime.php
$year = $date['tm_year']; // "tm_year" Years since 1900
$month = $date['tm_mon']; // "tm_mon" Months since January (0-11)
$day = $date['tm_mday']; // "tm_mday" Day of the month (1-31)
if ( ! is_numeric($year) || ! is_numeric($month) || ! is_numeric($day))
{
return false;
}
$year += 1900; // WARNING: untested!
$month++;
}
else
{
return false;
}
}
else
{
return false;
}
break;
case 3:
// because the 2nd param (month) might be a string, I don't want to copy the string matching months code!
return self::normalize($params);
}
$year = (int) $year;
$month = (int) $month;
$day = (int) $day;
if ($year < 1000 || $month < 1 || $day < 1 || $day > 31 || $month > 12 || $year > 9999)
return false;
if (checkdate($month, $day, $year))
return str_pad($year, 4, '0', STR_PAD_LEFT) . str_pad($month, 3, '-0', STR_PAD_LEFT) . str_pad($day , 3, '-0', STR_PAD_LEFT);
return false;
}
/**
*
* @param string $start start date
* @param string $end end date
* @return true/false if the date is between a date range ...
*/
public function between($start, $end)
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
/**
* PHP version of the MySQL FROM_DAYS() function
*
* @link https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_from-days
*
* @return string[]|null Returns an array with 'year', 'month' and 'day'
* from a matching date in the format 'YYYY-MM-DD', or null on failure
*/
public static function from_days($days)
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
/**
* PHP version of the MySQL FROM_DAYS() function
*
* @link https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_from-days
*
* @return string[]|null Returns an array with 'year', 'month' and 'day'
* from a matching date in the format 'YYYY-MM-DD', or null on failure
*/
public static function from_unixtime($time)
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
/**
* Gets a hash code of the internal date.
*
* @param string|null $algo Algorithm name supported by the hash() library, defaults to 'md5'
* @return string
*/
public function hash($algo = 'md5', $raw_output = false)
{
return hash($algo, $this->date->format('Y-m-d'), $raw_output);
}
/**
* Gets a hash code of the internal string.
*
* @param string|null $algo Algorithm name supported by the hash() library, defaults to 'md5'
* @return string
*/
public function getHash($algo = 'md5', $raw_output = false)
{
return hash($algo, $this->date->format('Y-m-d'), $raw_output);
}
/**
*
* @return Human readable date format, eg. 24 October 1977
*/
public function humanize()
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
/**
*
* @return
*/
public function isBlank()
{
return $this->date === null || $this->date === '0000-00-00';
}
/**
* Gets an MD5 hash code of the internal date. Return result can be raw binary or hex by default
*
* @param bool|null $raw_output return the raw binary bytes or hex values of the md5 hash
* @return string
*/
public function md5($raw_output = false)
{
return hash('md5', $this->date->format('Y-m-d'), $raw_output);
}
/**
*
* @param mixed $offset The index to check
* @return boolean Whether or not the index exists
*/
public function offsetExists($offset)
{
switch($offset)
{
case 0: return true;
case 1: return true;
case 2: return true;
case 'year': return true;
case 'month': return true;
case 'day': return true;
}
return false;
}
/**
*
* @param mixed $offset The index from which to retrieve the char
* @return mixed The character at the specified index
* @throws \OutOfBoundsException If the positive or negative offset does
* not exist
*/
public function offsetGet($offset)
{
switch ($name)
{
case 'year': return $this->date->format('Y');
case 'month': return $this->date->format('m');
case 'day': return $this->date->format('d');
case 0: return $this->date->format('Y');
case 1: return $this->date->format('m');
case 2: return $this->date->format('d');
}
if (strlen($name) === 1)
return $this->date->format($name);
/*
// http://php.net/manual/en/function.date.php
case 'd': return ; // Day of the month, 2 digits with leading zeros eg. 01 to 31
case 'D': return ; // A textual representation of a day, three letters eg. Mon through Sun
case 'j': return ; // Day of the month without leading zeros eg. 1 to 31
case 'l': return ; // A full textual representation of the day of the week eg. Sunday through Saturday
case 'N': return ; // ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0 eg. 1 (for Monday) through 7 (for Sunday)
case 'S': return ; // English ordinal suffix for the day of the month, 2 characters eg. st, nd, rd or th. Works well with j
case 'w': return ; // Numeric representation of the day of the week eg. 0 (for Sunday) through 6 (for Saturday)
case 'z': return ; // The day of the year (starting from 0) eg. 0 through 365
case 'W': return ; // ISO-8601 week number of year, weeks starting on Monday eg. Example: 42 (the 42nd week in the year)
case 'F': return ; // A full textual representation of a month, such as January or March eg. January through December
case 'm': return ; // Numeric representation of a month, with leading zeros eg. 01 through 12
case 'M': return ; // A short textual representation of a month, three letters eg. Jan through Dec
case 'n': return ; // Numeric representation of a month, without leading zeros eg. 1 through 12
case 't': return ; // Number of days in the given month eg. 28 through 31
case 'L': return ; // Whether it's a leap year eg. 1 if it is a leap year, 0 otherwise.
case 'o': return ; // ISO-8601 week-numbering year. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0) eg. Examples: 1999 or 2003
case 'Y': return ; // A full numeric representation of a year, 4 digits eg. Examples: 1999 or 2003
case 'y': return ; // A two digit representation of a year eg. Examples: 99 or 03
case 'U': return ; // Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT) eg. See also time()
*/
if ( ! ctype_lower($name))
$name = strtolower($name);
// @link http://www.tutorialspoint.com/mysql/mysql-date-time-functions.htm
// @link https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html
switch ($name)
{
case 'dayname': return $this->date->format('l'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayname MySQL: Returns the name of the weekday for date. The language used for the name is controlled by the value of the lc_time_names system variable
case 'dayofweek': return $this->date->format('w') + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofweek MySQL: 1 = Sunday, 2 = Monday, …, 7 = Saturday 'w' = 0 (for Sunday) through 6 (for Saturday)
case 'dayofmonth': return $this->date->format('j'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofmonth MySQL: Returns the day of the month for date, in the range 1 to 31, or 0 for dates such as '0000-00-00' or '2008-00-00' that have a zero day part.
case 'dayofyear': return $this->date->format('z') + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofyear MySQL: Returns the day of the year for date, in the range 1 to 366.
case 'monthname': return $this->date->format('F'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_monthname MySQL: Returns the full name of the month for date. The language used for the name is controlled by the value of the lc_time_names system variable
case 'timestamp': return $this->date->format('U'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_timestamp MySQL: With a single argument, this function returns the date or datetime expression expr as a datetime value. With two arguments, it adds the time expression expr2 to the date or datetime expression expr1 and returns the result as a datetime value.
case 'unix_timestamp': return $this->date->format('U'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_unix-timestamp MySQL: If called with no argument, returns a Unix timestamp (seconds since '1970-01-01 00:00:00' UTC).
case 'to_days': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_to-days MySQL: Given a date date, returns a day number (the number of days since year 0).
case 'utc_date': return $this->date->format('Y-m-d'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-date MySQL: Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context.
case 'utc_time': return $this->date->format('H:i:s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-time MySQL: Returns the current UTC time as a value in 'HH:MM:SS'
case 'utc_timestamp': return $this->date->format('Y-m-d H:i:s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-timestamp MySQL: Returns the current UTC date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context.
case 'quarter': return $this->date->format('m') / 4 + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_quarter MySQL: Returns the quarter of the year for date, in the range 1 to 4.
case 'week': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_week MySQL: This function returns the week number for date. The two-argument form of WEEK() enables you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range from 0 to 53 or from 1 to 53. If the mode argument is omitted, the value of the default_week_format system variable is used. See Section 5.1.5, “Server System Variables”.
case 'weekday': return $this->date->format('N') - 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_weekday MySQL: Returns the weekday index for date (0 = Monday, 1 = Tuesday, … 6 = Sunday).
case 'weekofyear': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_weekofyear MySQL: Returns the calendar week of the date as a number in the range from 1 to 53. WEEKOFYEAR() is a compatibility function that is equivalent to WEEK(date,3).
case 'yearweek': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_yearweek MySQL: Returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year.
case 'date': return $this->date->format('Y-m-d'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_date MySQL: Extracts the date part of the date or datetime expression expr.
case 'yesterday': return (clone $this)->modify('-1 day');
case 'tomorrow': return (clone $this)->modify('+1 day');
case 'prevday': return (clone $this)->modify('-1 day');
case 'nextday': return (clone $this)->modify('+1 day');
case 'prev_day': return (clone $this)->modify('-1 day');
case 'next_day': return (clone $this)->modify('+1 day');
case 'prevweek': return (clone $this)->modify('-7 days');
case 'nextweek': return (clone $this)->modify('+7 days');
case 'prev_week': return (clone $this)->modify('-7 days');
case 'next_week': return (clone $this)->modify('+7 days');
case 'prevmonth': return (clone $this)->modify('-1 month');
case 'nextmonth': return (clone $this)->modify('+1 month');
case 'prev_month': return (clone $this)->modify('-1 month');
case 'next_month': return (clone $this)->modify('+1 month');
case 'prevyear': return (clone $this)->modify('-1 year');
case 'nextyear': return (clone $this)->modify('+1 year');
case 'prev_year': return (clone $this)->modify('-1 year');
case 'next_year': return (clone $this)->modify('+1 year');
// strtolower($name) versions
case 'year': return $this->date->format('Y');
case 'month': return $this->date->format('m');
case 'day': return $this->date->format('d');
case 'hour': return $this->date->format('G'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_hour MySQL: Returns the hour for time. The range of the return value is 0 to 23 for time-of-day values. However, the range of TIME values actually is much larger, so HOUR can return values greater than 23.
case 'minute': return $this->date->format('i'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_minute MySQL: Returns the minute for time, in the range 0 to 59.
case 'second': return $this->date->format('s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_hour MySQL: Returns the second for time, in the range 0 to 59.
}
throw new \InvalidArgumentException('Property offsetGet["' . $name . '"] does not exist!');
}
/**
* Implements part of the ArrayAccess interface
*
* @param mixed $offset The index of the character
* @param mixed $value Value to set
* @throws \Exception When called
*/
public function offsetSet($offset, $value)
{
throw new \Exception('Cannot set array indexes!');
}
/**
* Implements part of the ArrayAccess interface, but throws an exception
* when called. This maintains the immutability of Stringy objects.
*
* @param mixed $offset The index of the character
* @throws \Exception When called
*/
public function offsetUnset($offset)
{
throw new \Exception('Cannot unset array indexes!');
}
/**
* PHP equivalent of the LAST_DAY() MySQL function
*
* `Takes a date or datetime value and returns the corresponding value for the last day of the month. Returns NULL if the argument is invalid.`
*
* @link https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_last-day
*
* @return int
*/
public function last_day()
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
/**
* PHP equivalent of the QUARTER() MySQL function
*
* `Returns the quarter of the year for date, in the range 1 to 4.`
*
* @link https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_quarter
*
* @return int
*/
public function quarter()
{
return (int) (($this->month / 4) + 1);
}
/**
* Gets a SHA1 (160-bit) hash code of the internal string. Return result can be raw binary or hex by default
*
* @param bool|null $raw_output return the raw binary bytes or hex values of the SHA1 hash
* @return string
*/
public function sha1($raw_output = false)
{
return hash('sha1', $this->date->format('Y-m-d'), $raw_output);
}
/**
* Gets a SHA-256 hash code of the internal string. Return result can be raw binary or hex by default
*
* @param bool|null $raw_output return the raw binary bytes or hex values of the SHA-256 hash
* @return string
*/
public function sha256($raw_output = false)
{
return hash('sha256', $this->date->format('Y-m-d'), $raw_output);
}
/**
* Gets a SHA-384 hash code of the internal string. Return result can be raw binary or hex by default
*
* @param bool|null $raw_output return the raw binary bytes or hex values of the SHA-384 hash
* @return string
*/
public function sha384($raw_output = false)
{
return hash('sha384', $this->date->format('Y-m-d'), $raw_output);
}
/**
* Gets a SHA-512 hash code of the internal string. Return result can be raw binary or hex by default
*
* @param bool|null $raw_output return the raw binary bytes or hex values of the SHA-512 hash
* @return string
*/
public function sha512($raw_output = false)
{
return hash('sha512', $this->date->format('Y-m-d'), $raw_output);
}
/**
*
* @return array
*/
public function toArray()
{
return explode('-', $this->date->format('Y-m-d'));
}
/**
*
* @return int
*/
public function toUnixTimestamp()
{
trigger_error('Function ' . __METHOD__ . ' not implemented yet');
}
function is_leap_year()
{
return $this->year % 100 == 0 ? $this->year % 400 == 0 : $this->year % 4 == 0;
}
function isLeapYear()
{
return $this->year % 100 == 0 ? $this->year % 400 == 0 : $this->year % 4 == 0;
}
function __get($name)
{
switch ($name)
{
case 'year': return $this->date->format('Y');
case 'month': return $this->date->format('m');
case 'day': return $this->date->format('d');
}
if (strlen($name) === 1)
return $this->date->format($name);
/*
// http://php.net/manual/en/function.date.php
case 'd': return ; // Day of the month, 2 digits with leading zeros eg. 01 to 31
case 'D': return ; // A textual representation of a day, three letters eg. Mon through Sun
case 'j': return ; // Day of the month without leading zeros eg. 1 to 31
case 'l': return ; // A full textual representation of the day of the week eg. Sunday through Saturday
case 'N': return ; // ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0 eg. 1 (for Monday) through 7 (for Sunday)
case 'S': return ; // English ordinal suffix for the day of the month, 2 characters eg. st, nd, rd or th. Works well with j
case 'w': return ; // Numeric representation of the day of the week eg. 0 (for Sunday) through 6 (for Saturday)
case 'z': return ; // The day of the year (starting from 0) eg. 0 through 365
case 'W': return ; // ISO-8601 week number of year, weeks starting on Monday eg. Example: 42 (the 42nd week in the year)
case 'F': return ; // A full textual representation of a month, such as January or March eg. January through December
case 'm': return ; // Numeric representation of a month, with leading zeros eg. 01 through 12
case 'M': return ; // A short textual representation of a month, three letters eg. Jan through Dec
case 'n': return ; // Numeric representation of a month, without leading zeros eg. 1 through 12
case 't': return ; // Number of days in the given month eg. 28 through 31
case 'L': return ; // Whether it's a leap year eg. 1 if it is a leap year, 0 otherwise.
case 'o': return ; // ISO-8601 week-numbering year. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0) eg. Examples: 1999 or 2003
case 'Y': return ; // A full numeric representation of a year, 4 digits eg. Examples: 1999 or 2003
case 'y': return ; // A two digit representation of a year eg. Examples: 99 or 03
case 'U': return ; // Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT) eg. See also time()
*/
if ( ! ctype_lower($name))
$name = strtolower($name);
// @link http://www.tutorialspoint.com/mysql/mysql-date-time-functions.htm
// @link https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html
switch ($name)
{
case 'dayname': return $this->date->format('l'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayname MySQL: Returns the name of the weekday for date. The language used for the name is controlled by the value of the lc_time_names system variable
case 'dayofweek': return $this->date->format('w') + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofweek MySQL: 1 = Sunday, 2 = Monday, …, 7 = Saturday 'w' = 0 (for Sunday) through 6 (for Saturday)
case 'dayofmonth': return $this->date->format('j'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofmonth MySQL: Returns the day of the month for date, in the range 1 to 31, or 0 for dates such as '0000-00-00' or '2008-00-00' that have a zero day part.
case 'dayofyear': return $this->date->format('z') + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_dayofyear MySQL: Returns the day of the year for date, in the range 1 to 366.
case 'monthname': return $this->date->format('F'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_monthname MySQL: Returns the full name of the month for date. The language used for the name is controlled by the value of the lc_time_names system variable
case 'timestamp': return $this->date->format('U'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_timestamp MySQL: With a single argument, this function returns the date or datetime expression expr as a datetime value. With two arguments, it adds the time expression expr2 to the date or datetime expression expr1 and returns the result as a datetime value.
case 'unix_timestamp': return $this->date->format('U'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_unix-timestamp MySQL: If called with no argument, returns a Unix timestamp (seconds since '1970-01-01 00:00:00' UTC).
case 'to_days': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_to-days MySQL: Given a date date, returns a day number (the number of days since year 0).
case 'utc_date': return $this->date->format('Y-m-d'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-date MySQL: Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context.
case 'utc_time': return $this->date->format('H:i:s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-time MySQL: Returns the current UTC time as a value in 'HH:MM:SS'
case 'utc_timestamp': return $this->date->format('Y-m-d H:i:s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_utc-timestamp MySQL: Returns the current UTC date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context.
case 'quarter': return $this->date->format('m') / 4 + 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_quarter MySQL: Returns the quarter of the year for date, in the range 1 to 4.
case 'week': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_week MySQL: This function returns the week number for date. The two-argument form of WEEK() enables you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range from 0 to 53 or from 1 to 53. If the mode argument is omitted, the value of the default_week_format system variable is used. See Section 5.1.5, “Server System Variables”.
case 'weekday': return $this->date->format('N') - 1; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_weekday MySQL: Returns the weekday index for date (0 = Monday, 1 = Tuesday, … 6 = Sunday).
case 'weekofyear': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_weekofyear MySQL: Returns the calendar week of the date as a number in the range from 1 to 53. WEEKOFYEAR() is a compatibility function that is equivalent to WEEK(date,3).
case 'yearweek': break; // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_yearweek MySQL: Returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year.
case 'date': return $this->date->format('Y-m-d'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_date MySQL: Extracts the date part of the date or datetime expression expr.
case 'age': return (new \DateTime('now', self::$utc))->diff($this->date)->y;
case 'days': return (new \DateTime('now', self::$utc))->diff($this->date)->days;
case 'yesterday': return (clone $this)->modify('-1 day');
case 'tomorrow': return (clone $this)->modify('+1 day');
case 'prevday': return (clone $this)->modify('-1 day');
case 'nextday': return (clone $this)->modify('+1 day');
case 'prev_day': return (clone $this)->modify('-1 day');
case 'next_day': return (clone $this)->modify('+1 day');
case 'prevweek': return (clone $this)->modify('-7 days');
case 'nextweek': return (clone $this)->modify('+7 days');
case 'prev_week': return (clone $this)->modify('-7 days');
case 'next_week': return (clone $this)->modify('+7 days');
case 'prevmonth': return (clone $this)->modify('-1 month');
case 'nextmonth': return (clone $this)->modify('+1 month');
case 'prev_month': return (clone $this)->modify('-1 month');
case 'next_month': return (clone $this)->modify('+1 month');
case 'prevyear': return (clone $this)->modify('-1 year');
case 'nextyear': return (clone $this)->modify('+1 year');
case 'prev_year': return (clone $this)->modify('-1 year');
case 'next_year': return (clone $this)->modify('+1 year');
// strtolower($name) versions
case 'year': return $this->date->format('Y');
case 'month': return $this->date->format('m');
case 'day': return $this->date->format('d');
case 'hour': return $this->date->format('G'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_hour MySQL: Returns the hour for time. The range of the return value is 0 to 23 for time-of-day values. However, the range of TIME values actually is much larger, so HOUR can return values greater than 23.
case 'minute': return $this->date->format('i'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_minute MySQL: Returns the minute for time, in the range 0 to 59.
case 'second': return $this->date->format('s'); // https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_hour MySQL: Returns the second for time, in the range 0 to 59.
}
throw new \InvalidArgumentException('Property ->' . $name . ' does not exist!');
}
function __set($name, $value)
{
switch ($name)
{
case 'year':
case 'month':
case 'day':
break;
case 'timestamp':
$this->date->setTimestamp($value);
break;
}
throw new \InvalidArgumentException('Property ->' . $name . ' cannot be set!');
}
public function getYear()
{
return $this->date->format('Y');
}
public function getMonth()
{
return $this->date->format('m');
}
public function getDay()
{
return $this->date->format('d');
}
public function getHour()
{
return $this->date->format('H');
}
public function getMinute()
{
return $this->date->format('i');
}
public function getSecond()
{
return $this->date->format('s');
}
public function getHours() // @alias getHour()
{
return $this->date->format('H');
}
public function getMinutes() // @alias getMinute()
{
return $this->date->format('i');
}
public function getSeconds() // @alias getSecond()
{
return $this->date->format('s');
}
/**
* 'D' == A textual representation of a day, three letters Mon through Sun
* 'l' == A full textual representation of the day of the week Sunday through Saturday
* 'N' == ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) 1 (for Monday) through 7 (for Sunday)
* 'w' == Numeric representation of the day of the week 0 (for Sunday) through 6 (for Saturday)
*/
public function getDayOfWeek($format = 'D')
{
return $this->date->format($format);
}
// CURDATE includes timezone, use UTC_DATE() for UTC date
public static function curdate()
{
return new static(date('Y-m-d'));
}
public static function utc_date()
{
return new static(gmdate('Y-m-d'));
}
public static function utcDate()
{
return new static(gmdate('Y-m-d'));
}
/**
* Create a Twister\DateTime instance from the current date and time.
*
* @param \DateTimeZone|string|null $tz
*
* @return static
*/
public static function now()
{
return new static(date('Y-m-d'));
}
/**
* Returns true if the string contains a date in the format 'YYYY-MM-DD' AND is a valid Gregorian date
*
* All date patterns MUST have 3x (..)
*
* @alias isValid()
* @alias validate()
*
* Alternative patterns:
* '/^(\d\d\d\d)-(\d\d)-(\d\d)$/'
* '/^(\d{4})-(\d{2})-(\d{2}) [0-2][0-3]:[0-5][0-9]:[0-5][0-9]$/'
* '/^([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/'
*
* @link http://php.net/manual/en/function.checkdate.php
*
* @return bool
*/
public static function isDate($date, $pattern = '~^([1-9]\d\d\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$~')
{
return preg_match($pattern, $date, $matches) === 1 && checkdate($matches[2], $matches[3], $matches[1]); // checkdate(month, day, year)
}
/**
* Returns true if the string contains a date in the format 'YYYY-MM-DD' AND is a valid Gregorian date
*
* @alias isDate()
* @alias validate()
*
* Alternative patterns:
* '/^(\d\d\d\d)-(\d\d)-(\d\d)$/'
* '/^(\d{4})-(\d{2})-(\d{2}) [0-2][0-3]:[0-5][0-9]:[0-5][0-9]$/'
* '/^([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/'
*
* @link http://php.net/manual/en/function.checkdate.php
*
* @return bool
*/
public static function isValid($date, $pattern = '~^([1-9]\d\d\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$~')
{
return preg_match($pattern, $date, $matches) === 1 && checkdate($matches[2], $matches[3], $matches[1]); // checkdate(month, day, year)
}
/**
* Returns true if the string contains a date in the format 'YYYY-MM-DD' AND is a valid Gregorian date
*
* @alias isDate()
* @alias isValid()
*
* Alternative patterns:
* '/^(\d\d\d\d)-(\d\d)-(\d\d)$/'
* '/^(\d{4})-(\d{2})-(\d{2}) [0-2][0-3]:[0-5][0-9]:[0-5][0-9]$/'
* '/^([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/'
*
* @link http://php.net/manual/en/function.checkdate.php
*
* @return bool
*/
public static function validate($date, $pattern = '~^([1-9]\d\d\d)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$~')
{
return preg_match($pattern, $date, $matches) === 1 && checkdate($matches[2], $matches[3], $matches[1]); // checkdate(month, day, year)
}
}
\Twister\Date::$utc = new \DateTimeZone('UTC');
\Twister\Date::$p1d = new \DateInterval('P1D');