1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 06:55:03 +00:00
Arsse/lib/Misc/Date.php

81 lines
3.1 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\Arsse\Misc;
class Date {
2017-08-29 14:50:31 +00:00
public static function transform($date, string $outFormat = null, string $inFormat = null, bool $inLocal = false) {
$date = self::normalize($date, $inFormat, $inLocal);
2017-08-29 14:50:31 +00:00
if (is_null($date) || is_null($outFormat)) {
2017-07-21 02:40:09 +00:00
return $date;
}
$outFormat = strtolower($outFormat);
2017-08-29 14:50:31 +00:00
if ($outFormat=="unix") {
2017-07-21 02:40:09 +00:00
return $date->getTimestamp();
}
switch ($outFormat) {
case 'http': $f = "D, d M Y H:i:s \G\M\T"; break;
2017-07-09 22:31:03 +00:00
case 'iso8601': $f = "Y-m-d\TH:i:s"; break;
case 'sql': $f = "Y-m-d H:i:s"; break;
case 'date': $f = "Y-m-d"; break;
case 'time': $f = "H:i:s"; break;
default: $f = $outFormat; break;
}
return $date->format($f);
}
2017-08-29 14:50:31 +00:00
public static function normalize($date, string $inFormat = null, bool $inLocal = false) {
if ($date instanceof \DateTimeInterface) {
return $date;
2017-08-29 14:50:31 +00:00
} elseif (is_numeric($date)) {
$time = (int) $date;
2017-08-29 14:50:31 +00:00
} elseif ($date===null) {
return null;
2017-08-29 14:50:31 +00:00
} elseif (is_string($date)) {
2017-07-05 13:09:38 +00:00
try {
$tz = (!$inLocal) ? new \DateTimeZone("UTC") : null;
2017-08-29 14:50:31 +00:00
if (!is_null($inFormat)) {
switch ($inFormat) {
case 'http': $f = "D, d M Y H:i:s \G\M\T"; break;
2017-07-09 22:31:03 +00:00
case 'iso8601': $f = "Y-m-d\TH:i:sP"; break;
case 'sql': $f = "Y-m-d H:i:s"; break;
case 'date': $f = "Y-m-d"; break;
case 'time': $f = "H:i:s"; break;
default: $f = $inFormat; break;
}
return \DateTime::createFromFormat("!".$f, $date, $tz);
} else {
return new \DateTime($date, $tz);
}
2017-08-29 14:50:31 +00:00
} catch (\Throwable $e) {
2017-07-05 13:09:38 +00:00
return null;
}
2017-08-29 14:50:31 +00:00
} elseif (is_bool($date)) {
return null;
} else {
$time = (int) $date;
}
$tz = (!$inLocal) ? new \DateTimeZone("UTC") : null;
$d = new \DateTime("now", $tz);
$d->setTimestamp($time);
return $d;
}
2017-08-18 02:36:15 +00:00
2017-08-29 14:50:31 +00:00
public static function add(string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
return self::modify("add", $interval, $date);
}
2017-08-29 14:50:31 +00:00
public static function sub(string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
return self::modify("sub", $interval, $date);
}
2017-08-29 14:50:31 +00:00
protected static function modify(string $func, string $interval, $date = null): \DateTimeInterface {
2017-08-18 02:36:15 +00:00
$date = self::normalize($date ?? time());
2017-08-29 14:50:31 +00:00
if ($date instanceof \DateTimeImmutable) {
2017-08-18 02:36:15 +00:00
return $date->$func(new \DateInterval($interval));
} else {
$date->$func(new \DateInterval($interval));
return $date;
}
}
2017-08-29 14:50:31 +00:00
}