Boundaries.php
4 years ago
Cast.php
4 years ago
Comparison.php
2 years ago
Converter.php
2 years ago
Creator.php
2 years ago
Date.php
9 months ago
DeprecatedProperties.php
4 years ago
Difference.php
2 years ago
IntervalRounding.php
2 years ago
IntervalStep.php
4 years ago
Localization.php
9 months ago
Macro.php
4 years ago
MagicParameter.php
2 years ago
Mixin.php
2 years ago
Modifiers.php
4 years ago
Mutability.php
4 years ago
ObjectInitialisation.php
4 years ago
Options.php
2 years ago
Rounding.php
2 years ago
Serialization.php
2 years ago
Test.php
9 months ago
Timestamp.php
1 year ago
ToStringFormat.php
3 years ago
Units.php
2 years ago
Week.php
4 years ago
index.php
3 years ago
Converter.php
198 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Carbon\Traits; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Carbon\Carbon; |
| 5 | use MailPoetVendor\Carbon\CarbonImmutable; |
| 6 | use MailPoetVendor\Carbon\CarbonInterface; |
| 7 | use MailPoetVendor\Carbon\CarbonInterval; |
| 8 | use MailPoetVendor\Carbon\CarbonPeriod; |
| 9 | use MailPoetVendor\Carbon\CarbonPeriodImmutable; |
| 10 | use MailPoetVendor\Carbon\Exceptions\UnitException; |
| 11 | use Closure; |
| 12 | use DateTime; |
| 13 | use DateTimeImmutable; |
| 14 | use ReturnTypeWillChange; |
| 15 | trait Converter |
| 16 | { |
| 17 | use ToStringFormat; |
| 18 | #[\ReturnTypeWillChange] |
| 19 | public function format($format) |
| 20 | { |
| 21 | $function = $this->localFormatFunction ?: static::$formatFunction; |
| 22 | if (!$function) { |
| 23 | return $this->rawFormat($format); |
| 24 | } |
| 25 | if (\is_string($function) && \method_exists($this, $function)) { |
| 26 | $function = [$this, $function]; |
| 27 | } |
| 28 | return $function(...\func_get_args()); |
| 29 | } |
| 30 | public function rawFormat($format) |
| 31 | { |
| 32 | return parent::format($format); |
| 33 | } |
| 34 | public function __toString() |
| 35 | { |
| 36 | $format = $this->localToStringFormat ?? static::$toStringFormat; |
| 37 | return $format instanceof Closure ? $format($this) : $this->rawFormat($format ?: (\defined('static::DEFAULT_TO_STRING_FORMAT') ? static::DEFAULT_TO_STRING_FORMAT : CarbonInterface::DEFAULT_TO_STRING_FORMAT)); |
| 38 | } |
| 39 | public function toDateString() |
| 40 | { |
| 41 | return $this->rawFormat('Y-m-d'); |
| 42 | } |
| 43 | public function toFormattedDateString() |
| 44 | { |
| 45 | return $this->rawFormat('M j, Y'); |
| 46 | } |
| 47 | public function toFormattedDayDateString() : string |
| 48 | { |
| 49 | return $this->rawFormat('D, M j, Y'); |
| 50 | } |
| 51 | public function toTimeString($unitPrecision = 'second') |
| 52 | { |
| 53 | return $this->rawFormat(static::getTimeFormatByPrecision($unitPrecision)); |
| 54 | } |
| 55 | public function toDateTimeString($unitPrecision = 'second') |
| 56 | { |
| 57 | return $this->rawFormat('Y-m-d ' . static::getTimeFormatByPrecision($unitPrecision)); |
| 58 | } |
| 59 | public static function getTimeFormatByPrecision($unitPrecision) |
| 60 | { |
| 61 | switch (static::singularUnit($unitPrecision)) { |
| 62 | case 'minute': |
| 63 | return 'H:i'; |
| 64 | case 'second': |
| 65 | return 'H:i:s'; |
| 66 | case 'm': |
| 67 | case 'millisecond': |
| 68 | return 'H:i:s.v'; |
| 69 | case 'µ': |
| 70 | case 'microsecond': |
| 71 | return 'H:i:s.u'; |
| 72 | } |
| 73 | throw new UnitException('Precision unit expected among: minute, second, millisecond and microsecond.'); |
| 74 | } |
| 75 | public function toDateTimeLocalString($unitPrecision = 'second') |
| 76 | { |
| 77 | return $this->rawFormat('Y-m-d\\T' . static::getTimeFormatByPrecision($unitPrecision)); |
| 78 | } |
| 79 | public function toDayDateTimeString() |
| 80 | { |
| 81 | return $this->rawFormat('D, M j, Y g:i A'); |
| 82 | } |
| 83 | public function toAtomString() |
| 84 | { |
| 85 | return $this->rawFormat(DateTime::ATOM); |
| 86 | } |
| 87 | public function toCookieString() |
| 88 | { |
| 89 | return $this->rawFormat(DateTime::COOKIE); |
| 90 | } |
| 91 | public function toIso8601String() |
| 92 | { |
| 93 | return $this->toAtomString(); |
| 94 | } |
| 95 | public function toRfc822String() |
| 96 | { |
| 97 | return $this->rawFormat(DateTime::RFC822); |
| 98 | } |
| 99 | public function toIso8601ZuluString($unitPrecision = 'second') |
| 100 | { |
| 101 | return $this->avoidMutation()->utc()->rawFormat('Y-m-d\\T' . static::getTimeFormatByPrecision($unitPrecision) . '\\Z'); |
| 102 | } |
| 103 | public function toRfc850String() |
| 104 | { |
| 105 | return $this->rawFormat(DateTime::RFC850); |
| 106 | } |
| 107 | public function toRfc1036String() |
| 108 | { |
| 109 | return $this->rawFormat(DateTime::RFC1036); |
| 110 | } |
| 111 | public function toRfc1123String() |
| 112 | { |
| 113 | return $this->rawFormat(DateTime::RFC1123); |
| 114 | } |
| 115 | public function toRfc2822String() |
| 116 | { |
| 117 | return $this->rawFormat(DateTime::RFC2822); |
| 118 | } |
| 119 | public function toRfc3339String($extended = \false) |
| 120 | { |
| 121 | $format = DateTime::RFC3339; |
| 122 | if ($extended) { |
| 123 | $format = DateTime::RFC3339_EXTENDED; |
| 124 | } |
| 125 | return $this->rawFormat($format); |
| 126 | } |
| 127 | public function toRssString() |
| 128 | { |
| 129 | return $this->rawFormat(DateTime::RSS); |
| 130 | } |
| 131 | public function toW3cString() |
| 132 | { |
| 133 | return $this->rawFormat(DateTime::W3C); |
| 134 | } |
| 135 | public function toRfc7231String() |
| 136 | { |
| 137 | return $this->avoidMutation()->setTimezone('GMT')->rawFormat(\defined('static::RFC7231_FORMAT') ? static::RFC7231_FORMAT : CarbonInterface::RFC7231_FORMAT); |
| 138 | } |
| 139 | public function toArray() |
| 140 | { |
| 141 | return ['year' => $this->year, 'month' => $this->month, 'day' => $this->day, 'dayOfWeek' => $this->dayOfWeek, 'dayOfYear' => $this->dayOfYear, 'hour' => $this->hour, 'minute' => $this->minute, 'second' => $this->second, 'micro' => $this->micro, 'timestamp' => $this->timestamp, 'formatted' => $this->rawFormat(\defined('static::DEFAULT_TO_STRING_FORMAT') ? static::DEFAULT_TO_STRING_FORMAT : CarbonInterface::DEFAULT_TO_STRING_FORMAT), 'timezone' => $this->timezone]; |
| 142 | } |
| 143 | public function toObject() |
| 144 | { |
| 145 | return (object) $this->toArray(); |
| 146 | } |
| 147 | public function toString() |
| 148 | { |
| 149 | return $this->avoidMutation()->locale('en')->isoFormat('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); |
| 150 | } |
| 151 | public function toISOString($keepOffset = \false) |
| 152 | { |
| 153 | if (!$this->isValid()) { |
| 154 | return null; |
| 155 | } |
| 156 | $yearFormat = $this->year < 0 || $this->year > 9999 ? 'YYYYYY' : 'YYYY'; |
| 157 | $tzFormat = $keepOffset ? 'Z' : '[Z]'; |
| 158 | $date = $keepOffset ? $this : $this->avoidMutation()->utc(); |
| 159 | return $date->isoFormat("{$yearFormat}-MM-DD[T]HH:mm:ss.SSSSSS{$tzFormat}"); |
| 160 | } |
| 161 | public function toJSON() |
| 162 | { |
| 163 | return $this->toISOString(); |
| 164 | } |
| 165 | public function toDateTime() |
| 166 | { |
| 167 | return new DateTime($this->rawFormat('Y-m-d H:i:s.u'), $this->getTimezone()); |
| 168 | } |
| 169 | public function toDateTimeImmutable() |
| 170 | { |
| 171 | return new DateTimeImmutable($this->rawFormat('Y-m-d H:i:s.u'), $this->getTimezone()); |
| 172 | } |
| 173 | public function toDate() |
| 174 | { |
| 175 | return $this->toDateTime(); |
| 176 | } |
| 177 | public function toPeriod($end = null, $interval = null, $unit = null) |
| 178 | { |
| 179 | if ($unit) { |
| 180 | $interval = CarbonInterval::make("{$interval} " . static::pluralUnit($unit)); |
| 181 | } |
| 182 | $period = ($this->isMutable() ? new CarbonPeriod() : new CarbonPeriodImmutable())->setDateClass(static::class)->setStartDate($this); |
| 183 | if ($interval) { |
| 184 | $period = $period->setDateInterval($interval); |
| 185 | } |
| 186 | if (\is_int($end) || \is_string($end) && \ctype_digit($end)) { |
| 187 | $period = $period->setRecurrences($end); |
| 188 | } elseif ($end) { |
| 189 | $period = $period->setEndDate($end); |
| 190 | } |
| 191 | return $period; |
| 192 | } |
| 193 | public function range($end = null, $interval = null, $unit = null) |
| 194 | { |
| 195 | return $this->toPeriod($end, $interval, $unit); |
| 196 | } |
| 197 | } |
| 198 |