19 declare(strict_types=1);
44 public const YEAR =
'year';
46 public const WEEK =
'week';
47 public const DAY =
'day';
48 public const HOUR =
'hour';
68 $this->log = $DIC->logger()->cal();
73 $this->
setDate($a_date, $a_format);
75 $this->log->warning($exc->getMessage());
89 return array(
'timezone',
'default_timezone',
'dt_obj');
95 $this->log = $DIC->logger()->cal();
104 return !($this->dt_obj instanceof
DateTime);
118 $this->log->warning(
'Unsupported timezone given: ' . $a_timezone_identifier);
119 throw new ilDateTimeException(
'Unsupported timezone given. Timezone: ' . $a_timezone_identifier);
125 return $this->timezone->getIdentifier();
141 string $a_compare_field =
'',
148 switch ($a_compare_field) {
160 return $start->dt_obj < $end->dt_obj;
175 string $a_compare_field =
'',
182 switch ($a_compare_field) {
194 return $start->dt_obj == $end->dt_obj;
212 string $a_compare_field =
'',
219 switch ($a_compare_field) {
231 return $start->dt_obj > $end->dt_obj;
242 string $a_compare_field =
'',
272 $sub = ($a_count < 0);
273 $count_str = abs($a_count);
277 $count_str .=
'year';
281 $count_str .=
'month';
285 $count_str .=
'week';
293 $count_str .=
'hour';
297 $count_str .=
'minute';
301 $count_str .=
'second';
305 $interval = date_interval_create_from_date_string($count_str);
307 $this->dt_obj->add($interval);
309 $this->dt_obj->sub($interval);
317 return $this->dt_obj->getTimestamp();
329 ?
string $a_timezone =
null 340 $a_hour = (
int) $a_hour;
341 $a_min = (
int) $a_min;
342 $a_sec = (
int) $a_sec;
344 $format = $a_year .
'-' . $a_month .
'-' . $a_day;
346 if ($a_hour !==
null) {
347 $format .=
' ' . $a_hour .
':' . $a_min .
':' . $a_sec;
371 public function setDate($a_date,
int $a_format): void
373 $this->dt_obj =
null;
382 $this->dt_obj =
new DateTime(
'@' . $a_date);
385 $message =
'Cannot parse date: ' . $a_date .
' with format ' . $a_format;
392 $matches = preg_match(
393 '/^(\d{4})-?(\d{2})-?(\d{2})([T\s]?(\d{2}):?(\d{2}):?(\d{2})(\.\d+)?(Z|[\+\-]\d{2}:?\d{2})?)$/i',
398 $this->log->warning(
'Cannot parse date: ' . $a_date);
399 $this->log->warning(print_r($matches,
true));
404 $tz_id = (isset($d_parts[9]) && $d_parts[9] ===
'Z')
423 $this->log->warning(
'Cannot parse date : ' . $a_date);
431 (
int) $a_date[
'year'],
432 (
int) $a_date[
'mon'],
433 (
int) $a_date[
'mday'],
434 (
int) $a_date[
'hours'],
435 (
int) $a_date[
'minutes'],
436 (
int) ($a_date[
'seconds'] ?? 0),
442 if (!preg_match(
"/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/", $a_date, $d_parts)) {
443 $this->log->warning(
'Cannot parse date: ' . $a_date);
462 $this->dt_obj = DateTime::createFromFormat(
477 public function get(
int $a_format,
string $a_format_str =
'',
string $a_tz =
'')
488 $this->log->warning(
'Invalid timezone given. Timezone: ' . $a_tz);
491 $out_date = clone($this->dt_obj);
502 $date = $out_date->format(
'Y-m-d');
506 $date = $out_date->format(
'Y-m-d H:i:s');
510 $date = $out_date->format($a_format_str);
515 'seconds' => (
int) $out_date->format(
's')
517 'minutes' => (
int) $out_date->format(
'i')
519 'hours' => (
int) $out_date->format(
'G')
521 'mday' => (
int) $out_date->format(
'j')
523 'wday' => (
int) $out_date->format(
'w')
525 'mon' => (
int) $out_date->format(
'n')
527 'year' => (
int) $out_date->format(
'Y')
529 'yday' => (
int) $out_date->format(
'z')
531 'weekday' => $out_date->format(
'l')
533 'month' => $out_date->format(
'F')
535 'isoday' => (
int) $out_date->format(
'N')
540 $date = $out_date->format(
'c');
544 $date = $out_date->format(
'YmdHis');
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date
parsePartsToDate(int $a_year, int $a_month, int $a_day, ?int $a_hour=null, ?int $a_min=null, ?int $a_sec=null, ?string $a_timezone=null)
static _getInstance(string $a_tz='')
get instance by timezone
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
ilTimeZone $default_timezone
setDate($a_date, int $a_format)
Set date.
increment(string $a_type, int $a_count=1)
__toString()
to string for date time objects Output is user time zone public
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
Class for TimeZone exceptions.
static _equals(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check if two date are equal.
__construct($a_date=null, int $a_format=0, string $a_tz='')
Create new date object.
switchTimeZone(string $a_timezone_identifier='')
Switch timezone.
static _within(ilDateTime $dt, ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check whether an date is within a date duration given by start and end.
isNull()
Check if a date is null (Datetime == '0000-00-00 00:00:00', unixtime == 0,...)