Вход Регистрация
Файл: system/vendor/nesbot/carbon/src/Carbon/Traits/Difference.php
Строк: 1885
<?php

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace CarbonTraits;

use 
CarbonCarbon;
use 
CarbonCarbonImmutable;
use 
CarbonCarbonInterface;
use 
CarbonCarbonInterval;
use 
CarbonCarbonPeriod;
use 
CarbonTranslator;
use 
Closure;
use 
DateInterval;
use 
DateTimeInterface;

/**
 * Trait Difference.
 *
 * Depends on the following methods:
 *
 * @method bool lessThan($date)
 * @method DateInterval diff(DateTimeInterface $date, bool $absolute = false)
 * @method static copy()
 * @method static resolveCarbon($date = null)
 * @method static Translator translator()
 */
trait Difference
{
    
/**
     * @codeCoverageIgnore
     *
     * @param CarbonInterval $diff
     */
    
protected static function fixNegativeMicroseconds(CarbonInterval $diff)
    {
        if (
$diff->!== || $diff->!== || $diff->!== || $diff->!== || $diff->!== || $diff->!== 0) {
            
$diff->= (round($diff->1000000) + 1000000) / 1000000;
            
$diff->s--;

            if (
$diff->0) {
                
$diff->+= 60;
                
$diff->i--;

                if (
$diff->0) {
                    
$diff->+= 60;
                    
$diff->h--;

                    if (
$diff->0) {
                        
$diff->+= 24;
                        
$diff->d--;

                        if (
$diff->0) {
                            
$diff->+= 30;
                            
$diff->m--;

                            if (
$diff->0) {
                                
$diff->+= 12;
                                
$diff->y--;
                            }
                        }
                    }
                }
            }

            return;
        }

        
$diff->*= -1;
        
$diff->invert();
    }

    
/**
     * @param DateInterval $diff
     * @param bool         $absolute
     *
     * @return CarbonInterval
     */
    
protected static function fixDiffInterval(DateInterval $diff$absolute)
    {
        
$diff CarbonInterval::instance($diff);

        
// Work-around for https://bugs.php.net/bug.php?id=77145
        // @codeCoverageIgnoreStart
        
if ($diff->&& $diff->=== -&& $diff->=== 11 && $diff->>= 27 && $diff->=== 23 && $diff->=== 59 && $diff->=== 59) {
            
$diff->0;
            
$diff->0;
            
$diff->0;
            
$diff->0;
            
$diff->0;
            
$diff->0;
            
$diff->= (1000000 round($diff->1000000)) / 1000000;
            
$diff->invert();
        } elseif (
$diff->0) {
            static::
fixNegativeMicroseconds($diff);
        }
        
// @codeCoverageIgnoreEnd

        
if ($absolute && $diff->invert) {
            
$diff->invert();
        }

        return 
$diff;
    }

    
/**
     * Get the difference as a DateInterval instance.
     * Return relative interval (negative if
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return DateInterval
     */
    
public function diff($date null$absolute false)
    {
        return 
parent::diff($this->resolveCarbon($date), (bool) $absolute);
    }

    
/**
     * Get the difference as a CarbonInterval instance.
     * Return absolute interval (always positive) unless you pass false to the second argument.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return CarbonInterval
     */
    
public function diffAsCarbonInterval($date null$absolute true)
    {
        return static::
fixDiffInterval($this->diff($this->resolveCarbon($date), $absolute), $absolute);
    }

    
/**
     * Get the difference in years
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInYears($date null$absolute true)
    {
        return (int) 
$this->diff($this->resolveCarbon($date), $absolute)->format('%r%y');
    }

    
/**
     * Get the difference in quarters rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInQuarters($date null$absolute true)
    {
        return (int) (
$this->diffInMonths($date$absolute) / static::MONTHS_PER_QUARTER);
    }

    
/**
     * Get the difference in months rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInMonths($date null$absolute true)
    {
        
$date $this->resolveCarbon($date);

        return 
$this->diffInYears($date$absolute) * static::MONTHS_PER_YEAR + (int) $this->diff($date$absolute)->format('%r%m');
    }

    
/**
     * Get the difference in weeks rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInWeeks($date null$absolute true)
    {
        return (int) (
$this->diffInDays($date$absolute) / static::DAYS_PER_WEEK);
    }

    
/**
     * Get the difference in days rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInDays($date null$absolute true)
    {
        return (int) 
$this->diff($this->resolveCarbon($date), $absolute)->format('%r%a');
    }

    
/**
     * Get the difference in days using a filter closure rounded down.
     *
     * @param Closure                                                $callback
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInDaysFiltered(Closure $callback$date null$absolute true)
    {
        return 
$this->diffFiltered(CarbonInterval::day(), $callback$date$absolute);
    }

    
/**
     * Get the difference in hours using a filter closure rounded down.
     *
     * @param Closure                                                $callback
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInHoursFiltered(Closure $callback$date null$absolute true)
    {
        return 
$this->diffFiltered(CarbonInterval::hour(), $callback$date$absolute);
    }

    
/**
     * Get the difference by the given interval using a filter closure.
     *
     * @param CarbonInterval                                         $ci       An interval to traverse by
     * @param Closure                                                $callback
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffFiltered(CarbonInterval $ciClosure $callback$date null$absolute true)
    {
        
$start $this;
        
$end $this->resolveCarbon($date);
        
$inverse false;

        if (
$end $start) {
            
$start $end;
            
$end $this;
            
$inverse true;
        }

        
$options CarbonPeriod::EXCLUDE_END_DATE | ($this->isMutable() ? CarbonPeriod::IMMUTABLE);
        
$diff $ci->toPeriod($start$end$options)->filter($callback)->count();

        return 
$inverse && !$absolute ? -$diff $diff;
    }

    
/**
     * Get the difference in weekdays rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInWeekdays($date null$absolute true)
    {
        return 
$this->diffInDaysFiltered(function (CarbonInterface $date) {
            return 
$date->isWeekday();
        }, 
$date$absolute);
    }

    
/**
     * Get the difference in weekend days using a filter rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInWeekendDays($date null$absolute true)
    {
        return 
$this->diffInDaysFiltered(function (CarbonInterface $date) {
            return 
$date->isWeekend();
        }, 
$date$absolute);
    }

    
/**
     * Get the difference in hours rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInHours($date null$absolute true)
    {
        return (int) (
$this->diffInSeconds($date$absolute) / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR);
    }

    
/**
     * Get the difference in hours rounded down using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInRealHours($date null$absolute true)
    {
        return (int) (
$this->diffInRealSeconds($date$absolute) / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR);
    }

    
/**
     * Get the difference in minutes rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInMinutes($date null$absolute true)
    {
        return (int) (
$this->diffInSeconds($date$absolute) / static::SECONDS_PER_MINUTE);
    }

    
/**
     * Get the difference in minutes rounded down using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInRealMinutes($date null$absolute true)
    {
        return (int) (
$this->diffInRealSeconds($date$absolute) / static::SECONDS_PER_MINUTE);
    }

    
/**
     * Get the difference in seconds rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInSeconds($date null$absolute true)
    {
        
$diff $this->diff($date);

        if (
$diff->days === 0) {
            
$diff = static::fixDiffInterval($diff$absolute);
        }

        
$value = (((($diff->|| $diff->$diff->days $diff->d) * static::HOURS_PER_DAY) +
            
$diff->h) * static::MINUTES_PER_HOUR +
            
$diff->i) * static::SECONDS_PER_MINUTE +
            
$diff->s;

        return 
$absolute || !$diff->invert $value : -$value;
    }

    
/**
     * Get the difference in microseconds.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInMicroseconds($date null$absolute true)
    {
        
$diff $this->diff($date);
        
$value = (int) round(((((($diff->|| $diff->$diff->days $diff->d) * static::HOURS_PER_DAY) +
            
$diff->h) * static::MINUTES_PER_HOUR +
            
$diff->i) * static::SECONDS_PER_MINUTE +
            (
$diff->$diff->s)) * static::MICROSECONDS_PER_SECOND);

        return 
$absolute || !$diff->invert $value : -$value;
    }

    
/**
     * Get the difference in milliseconds rounded down.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInMilliseconds($date null$absolute true)
    {
        return (int) (
$this->diffInMicroseconds($date$absolute) / static::MICROSECONDS_PER_MILLISECOND);
    }

    
/**
     * Get the difference in seconds using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInRealSeconds($date null$absolute true)
    {
        
/** @var CarbonInterface $date */
        
$date $this->resolveCarbon($date);
        
$value $date->getTimestamp() - $this->getTimestamp();

        return 
$absolute abs($value) : $value;
    }

    
/**
     * Get the difference in microseconds using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInRealMicroseconds($date null$absolute true)
    {
        
/** @var CarbonInterface $date */
        
$date $this->resolveCarbon($date);
        
$value = ($date->timestamp $this->timestamp) * static::MICROSECONDS_PER_SECOND +
            
$date->micro $this->micro;

        return 
$absolute abs($value) : $value;
    }

    
/**
     * Get the difference in milliseconds rounded down using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return int
     */
    
public function diffInRealMilliseconds($date null$absolute true)
    {
        return (int) (
$this->diffInRealMicroseconds($date$absolute) / static::MICROSECONDS_PER_MILLISECOND);
    }

    
/**
     * Get the difference in seconds as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInSeconds($date null$absolute true)
    {
        return 
$this->diffInMicroseconds($date$absolute) / static::MICROSECONDS_PER_SECOND;
    }

    
/**
     * Get the difference in minutes as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInMinutes($date null$absolute true)
    {
        return 
$this->floatDiffInSeconds($date$absolute) / static::SECONDS_PER_MINUTE;
    }

    
/**
     * Get the difference in hours as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInHours($date null$absolute true)
    {
        return 
$this->floatDiffInMinutes($date$absolute) / static::MINUTES_PER_HOUR;
    }

    
/**
     * Get the difference in days as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInDays($date null$absolute true)
    {
        
$hoursDiff $this->floatDiffInHours($date$absolute);

        return (
$hoursDiff ? -1) * $this->diffInDays($date) + fmod($hoursDiff, static::HOURS_PER_DAY) / static::HOURS_PER_DAY;
    }

    
/**
     * Get the difference in months as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInMonths($date null$absolute true)
    {
        
$start $this;
        
$end $this->resolveCarbon($date);
        
$ascending = ($start <= $end);
        
$sign $absolute || $ascending : -1;
        if (!
$ascending) {
            [
$start$end] = [$end$start];
        }
        
$monthsDiff $start->diffInMonths($end);
        
/** @var Carbon|CarbonImmutable $floorEnd */
        
$floorEnd $start->copy()->addMonths($monthsDiff);

        if (
$floorEnd >= $end) {
            return 
$sign $monthsDiff;
        }

        
/** @var Carbon|CarbonImmutable $startOfMonthAfterFloorEnd */
        
$startOfMonthAfterFloorEnd $floorEnd->copy()->addMonth()->startOfMonth();

        if (
$startOfMonthAfterFloorEnd $end) {
            return 
$sign * ($monthsDiff $floorEnd->floatDiffInDays($end) / $floorEnd->daysInMonth);
        }

        return 
$sign * ($monthsDiff $floorEnd->floatDiffInDays($startOfMonthAfterFloorEnd) / $floorEnd->daysInMonth $startOfMonthAfterFloorEnd->floatDiffInDays($end) / $end->daysInMonth);
    }

    
/**
     * Get the difference in year as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInYears($date null$absolute true)
    {
        
$start $this;
        
$end $this->resolveCarbon($date);
        
$ascending = ($start <= $end);
        
$sign $absolute || $ascending : -1;
        if (!
$ascending) {
            [
$start$end] = [$end$start];
        }
        
$yearsDiff $start->diffInYears($end);
        
/** @var Carbon|CarbonImmutable $floorEnd */
        
$floorEnd $start->copy()->addYears($yearsDiff);

        if (
$floorEnd >= $end) {
            return 
$sign $yearsDiff;
        }

        
/** @var Carbon|CarbonImmutable $startOfYearAfterFloorEnd */
        
$startOfYearAfterFloorEnd $floorEnd->copy()->addYear()->startOfYear();

        if (
$startOfYearAfterFloorEnd $end) {
            return 
$sign * ($yearsDiff $floorEnd->floatDiffInDays($end) / $floorEnd->daysInYear);
        }

        return 
$sign * ($yearsDiff $floorEnd->floatDiffInDays($startOfYearAfterFloorEnd) / $floorEnd->daysInYear $startOfYearAfterFloorEnd->floatDiffInDays($end) / $end->daysInYear);
    }

    
/**
     * Get the difference in seconds as float (microsecond-precision) using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealSeconds($date null$absolute true)
    {
        return 
$this->diffInRealMicroseconds($date$absolute) / static::MICROSECONDS_PER_SECOND;
    }

    
/**
     * Get the difference in minutes as float (microsecond-precision) using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealMinutes($date null$absolute true)
    {
        return 
$this->floatDiffInRealSeconds($date$absolute) / static::SECONDS_PER_MINUTE;
    }

    
/**
     * Get the difference in hours as float (microsecond-precision) using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealHours($date null$absolute true)
    {
        return 
$this->floatDiffInRealMinutes($date$absolute) / static::MINUTES_PER_HOUR;
    }

    
/**
     * Get the difference in days as float (microsecond-precision).
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealDays($date null$absolute true)
    {
        
$hoursDiff $this->floatDiffInRealHours($date$absolute);

        return (
$hoursDiff ? -1) * $this->diffInDays($date) + fmod($hoursDiff, static::HOURS_PER_DAY) / static::HOURS_PER_DAY;
    }

    
/**
     * Get the difference in months as float (microsecond-precision) using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealMonths($date null$absolute true)
    {
        
$start $this;
        
$end $this->resolveCarbon($date);
        
$ascending = ($start <= $end);
        
$sign $absolute || $ascending : -1;
        if (!
$ascending) {
            [
$start$end] = [$end$start];
        }
        
$monthsDiff $start->diffInMonths($end);
        
/** @var Carbon|CarbonImmutable $floorEnd */
        
$floorEnd $start->copy()->addMonths($monthsDiff);

        if (
$floorEnd >= $end) {
            return 
$sign $monthsDiff;
        }

        
/** @var Carbon|CarbonImmutable $startOfMonthAfterFloorEnd */
        
$startOfMonthAfterFloorEnd $floorEnd->copy()->addMonth()->startOfMonth();

        if (
$startOfMonthAfterFloorEnd $end) {
            return 
$sign * ($monthsDiff $floorEnd->floatDiffInRealDays($end) / $floorEnd->daysInMonth);
        }

        return 
$sign * ($monthsDiff $floorEnd->floatDiffInRealDays($startOfMonthAfterFloorEnd) / $floorEnd->daysInMonth $startOfMonthAfterFloorEnd->floatDiffInRealDays($end) / $end->daysInMonth);
    }

    
/**
     * Get the difference in year as float (microsecond-precision) using timestamps.
     *
     * @param CarbonCarbonInterface|DateTimeInterface|string|null $date
     * @param bool                                                   $absolute Get the absolute of the difference
     *
     * @return float
     */
    
public function floatDiffInRealYears($date null$absolute true)
    {
        
$start $this;
        
$end $this->resolveCarbon($date);
        
$ascending = ($start <= $end);
        
$sign $absolute || $ascending : -1;
        if (!
$ascending) {
            [
$start$end] = [$end$start];
        }
        
$yearsDiff $start->diffInYears($end);
        
/** @var Carbon|CarbonImmutable $floorEnd */
        
$floorEnd $start->copy()->addYears($yearsDiff);

        if (
$floorEnd >= $end) {
            return 
$sign $yearsDiff;
        }

        
/** @var Carbon|CarbonImmutable $startOfYearAfterFloorEnd */
        
$startOfYearAfterFloorEnd $floorEnd->copy()->addYear()->startOfYear();

        if (
$startOfYearAfterFloorEnd $end) {
            return 
$sign * ($yearsDiff $floorEnd->floatDiffInRealDays($end) / $floorEnd->daysInYear);
        }

        return 
$sign * ($yearsDiff $floorEnd->floatDiffInRealDays($startOfYearAfterFloorEnd) / $floorEnd->daysInYear $startOfYearAfterFloorEnd->floatDiffInRealDays($end) / $end->daysInYear);
    }

    
/**
     * The number of seconds since midnight.
     *
     * @return int
     */
    
public function secondsSinceMidnight()
    {
        return 
$this->diffInSeconds($this->copy()->startOfDay());
    }

    
/**
     * The number of seconds until 23:59:59.
     *
     * @return int
     */
    
public function secondsUntilEndOfDay()
    {
        return 
$this->diffInSeconds($this->copy()->endOfDay());
    }

    
/**
     * Get the difference in a human readable format in the current locale from current instance to an other
     * instance given (or now if null given).
     *
     * @example
     * ```
     * echo Carbon::tomorrow()->diffForHumans() . "n";
     * echo Carbon::tomorrow()->diffForHumans(['parts' => 2]) . "n";
     * echo Carbon::tomorrow()->diffForHumans(['parts' => 3, 'join' => true]) . "n";
     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday()) . "n";
     * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday(), ['short' => true]) . "n";
     * ```
     *
     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;
     *                                                             if null passed, now will be used as comparison reference;
     *                                                             if any other type, it will be converted to date and used as reference.
     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                                                             - 'syntax' entry (see below)
     *                                                             - 'short' entry (see below)
     *                                                             - 'parts' entry (see below)
     *                                                             - 'options' entry (see below)
     *                                                             - 'join' entry determines how to join multiple parts of the string
     *                                                             `  - if $join is a string, it's used as a joiner glue
     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string
     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item
     *                                                             `    will be used instead of the glue for the last item
     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                                                             `  - if $join is missing, a space will be used as glue
     *                                                             - 'other' entry (see above)
     *                                                             if int passed, it add modifiers:
     *                                                             Possible values:
     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool                                        $short   displays short format of time units
     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)
     * @param int                                         $options human diff options
     *
     * @return string
     */
    
public function diffForHumans($other null$syntax null$short false$parts 1$options null)
    {
        
/* @var CarbonInterface $this */
        
if (is_array($other)) {
            
$other['syntax'] = array_key_exists('syntax'$other) ? $other['syntax'] : $syntax;
            
$syntax $other;
            
$other $syntax['other'] ?? null;
        }

        
$intSyntax = &$syntax;
        if (
is_array($syntax)) {
            
$syntax['syntax'] = $syntax['syntax'] ?? null;
            
$intSyntax = &$syntax['syntax'];
        }
        
$intSyntax = (int) ($intSyntax === null ? static::DIFF_RELATIVE_AUTO $intSyntax);
        
$intSyntax $intSyntax === static::DIFF_RELATIVE_AUTO && $other === null ? static::DIFF_RELATIVE_TO_NOW $intSyntax;

        
$parts min(7max(1, (int) $parts));

        return 
$this->diffAsCarbonInterval($otherfalse)
            ->
setLocalTranslator($this->getLocalTranslator())
            ->
forHumans($syntax, (bool) $short$parts$options ?? $this->localHumanDiffOptions ?? static::getHumanDiffOptions());
    }

    
/**
     * @alias diffForHumans
     *
     * Get the difference in a human readable format in the current locale from current instance to an other
     * instance given (or now if null given).
     *
     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;
     *                                                             if null passed, now will be used as comparison reference;
     *                                                             if any other type, it will be converted to date and used as reference.
     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                                                             - 'syntax' entry (see below)
     *                                                             - 'short' entry (see below)
     *                                                             - 'parts' entry (see below)
     *                                                             - 'options' entry (see below)
     *                                                             - 'join' entry determines how to join multiple parts of the string
     *                                                             `  - if $join is a string, it's used as a joiner glue
     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string
     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item
     *                                                             `    will be used instead of the glue for the last item
     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                                                             `  - if $join is missing, a space will be used as glue
     *                                                             - 'other' entry (see above)
     *                                                             if int passed, it add modifiers:
     *                                                             Possible values:
     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool                                        $short   displays short format of time units
     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)
     * @param int                                         $options human diff options
     *
     * @return string
     */
    
public function from($other null$syntax null$short false$parts 1$options null)
    {
        return 
$this->diffForHumans($other$syntax$short$parts$options);
    }

    
/**
     * @alias diffForHumans
     *
     * Get the difference in a human readable format in the current locale from current instance to an other
     * instance given (or now if null given).
     */
    
public function since($other null$syntax null$short false$parts 1$options null)
    {
        return 
$this->diffForHumans($other$syntax$short$parts$options);
    }

    
/**
     * Get the difference in a human readable format in the current locale from an other
     * instance given (or now if null given) to current instance.
     *
     * When comparing a value in the past to default now:
     * 1 hour from now
     * 5 months from now
     *
     * When comparing a value in the future to default now:
     * 1 hour ago
     * 5 months ago
     *
     * When comparing a value in the past to another value:
     * 1 hour after
     * 5 months after
     *
     * When comparing a value in the future to another value:
     * 1 hour before
     * 5 months before
     *
     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;
     *                                                             if null passed, now will be used as comparison reference;
     *                                                             if any other type, it will be converted to date and used as reference.
     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                                                             - 'syntax' entry (see below)
     *                                                             - 'short' entry (see below)
     *                                                             - 'parts' entry (see below)
     *                                                             - 'options' entry (see below)
     *                                                             - 'join' entry determines how to join multiple parts of the string
     *                                                             `  - if $join is a string, it's used as a joiner glue
     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string
     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item
     *                                                             `    will be used instead of the glue for the last item
     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                                                             `  - if $join is missing, a space will be used as glue
     *                                                             - 'other' entry (see above)
     *                                                             if int passed, it add modifiers:
     *                                                             Possible values:
     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool                                        $short   displays short format of time units
     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)
     * @param int                                         $options human diff options
     *
     * @return string
     */
    
public function to($other null$syntax null$short false$parts 1$options null)
    {
        if (!
$syntax && !$other) {
            
$syntax CarbonInterface::DIFF_RELATIVE_TO_NOW;
        }

        return 
$this->resolveCarbon($other)->diffForHumans($this$syntax$short$parts$options);
    }

    
/**
     * @alias to
     *
     * Get the difference in a human readable format in the current locale from an other
     * instance given (or now if null given) to current instance.
     *
     * @param Carbon|DateTimeInterface|string|array|null $other   if array passed, will be used as parameters array, see $syntax below;
     *                                                             if null passed, now will be used as comparison reference;
     *                                                             if any other type, it will be converted to date and used as reference.
     * @param int|array                                   $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                                                             - 'syntax' entry (see below)
     *                                                             - 'short' entry (see below)
     *                                                             - 'parts' entry (see below)
     *                                                             - 'options' entry (see below)
     *                                                             - 'join' entry determines how to join multiple parts of the string
     *                                                             `  - if $join is a string, it's used as a joiner glue
     *                                                             `  - if $join is a callable/closure, it get the list of string and should return a string
     *                                                             `  - if $join is an array, the first item will be the default glue, and the second item
     *                                                             `    will be used instead of the glue for the last item
     *                                                             `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                                                             `  - if $join is missing, a space will be used as glue
     *                                                             - 'other' entry (see above)
     *                                                             if int passed, it add modifiers:
     *                                                             Possible values:
     *                                                             - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                                                             - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                                                             Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool                                        $short   displays short format of time units
     * @param int                                         $parts   maximum number of parts to display (default value: 1: single unit)
     * @param int                                         $options human diff options
     *
     * @return string
     */
    
public function until($other null$syntax null$short false$parts 1$options null)
    {
        return 
$this->to($other$syntax$short$parts$options);
    }

    
/**
     * Get the difference in a human readable format in the current locale from current
     * instance to now.
     *
     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                           - 'syntax' entry (see below)
     *                           - 'short' entry (see below)
     *                           - 'parts' entry (see below)
     *                           - 'options' entry (see below)
     *                           - 'join' entry determines how to join multiple parts of the string
     *                           `  - if $join is a string, it's used as a joiner glue
     *                           `  - if $join is a callable/closure, it get the list of string and should return a string
     *                           `  - if $join is an array, the first item will be the default glue, and the second item
     *                           `    will be used instead of the glue for the last item
     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                           `  - if $join is missing, a space will be used as glue
     *                           if int passed, it add modifiers:
     *                           Possible values:
     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                           Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool      $short   displays short format of time units
     * @param int       $parts   maximum number of parts to display (default value: 1: single unit)
     * @param int       $options human diff options
     *
     * @return string
     */
    
public function fromNow($syntax null$short false$parts 1$options null)
    {
        
$other null;

        if (
$syntax instanceof DateTimeInterface) {
            [
$other$syntax$short$parts$options] = array_pad(func_get_args(), 5null);
        }

        return 
$this->from($other$syntax$short$parts$options);
    }

    
/**
     * Get the difference in a human readable format in the current locale from an other
     * instance given to now
     *
     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                           - 'syntax' entry (see below)
     *                           - 'short' entry (see below)
     *                           - 'parts' entry (see below)
     *                           - 'options' entry (see below)
     *                           - 'join' entry determines how to join multiple parts of the string
     *                           `  - if $join is a string, it's used as a joiner glue
     *                           `  - if $join is a callable/closure, it get the list of string and should return a string
     *                           `  - if $join is an array, the first item will be the default glue, and the second item
     *                           `    will be used instead of the glue for the last item
     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                           `  - if $join is missing, a space will be used as glue
     *                           if int passed, it add modifiers:
     *                           Possible values:
     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                           Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool      $short   displays short format of time units
     * @param int       $parts   maximum number of parts to display (default value: 1: single part)
     * @param int       $options human diff options
     *
     * @return string
     */
    
public function toNow($syntax null$short false$parts 1$options null)
    {
        return 
$this->to(null$syntax$short$parts$options);
    }

    
/**
     * Get the difference in a human readable format in the current locale from an other
     * instance given to now
     *
     * @param int|array $syntax  if array passed, parameters will be extracted from it, the array may contains:
     *                           - 'syntax' entry (see below)
     *                           - 'short' entry (see below)
     *                           - 'parts' entry (see below)
     *                           - 'options' entry (see below)
     *                           - 'join' entry determines how to join multiple parts of the string
     *                           `  - if $join is a string, it's used as a joiner glue
     *                           `  - if $join is a callable/closure, it get the list of string and should return a string
     *                           `  - if $join is an array, the first item will be the default glue, and the second item
     *                           `    will be used instead of the glue for the last item
     *                           `  - if $join is true, it will be guessed from the locale ('list' translation file entry)
     *                           `  - if $join is missing, a space will be used as glue
     *                           if int passed, it add modifiers:
     *                           Possible values:
     *                           - CarbonInterface::DIFF_ABSOLUTE          no modifiers
     *                           - CarbonInterface::DIFF_RELATIVE_TO_NOW   add ago/from now modifier
     *                           - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier
     *                           Default value: CarbonInterface::DIFF_ABSOLUTE
     * @param bool      $short   displays short format of time units
     * @param int       $parts   maximum number of parts to display (default value: 1: single part)
     * @param int       $options human diff options
     *
     * @return string
     */
    
public function ago($syntax null$short false$parts 1$options null)
    {
        
$other null;

        if (
$syntax instanceof DateTimeInterface) {
            [
$other$syntax$short$parts$options] = array_pad(func_get_args(), 5null);
        }

        return 
$this->from($other$syntax$short$parts$options);
    }

    
/**
     * Get the difference in a human readable format in the current locale from current instance to an other
     * instance given (or now if null given).
     *
     * @return string
     */
    
public function timespan($other null$timezone null)
    {
        if (!
$other instanceof DateTimeInterface) {
            
$other = static::parse($other$timezone);
        }

        return 
$this->diffForHumans($other, [
            
'join' => ', ',
            
'syntax' => CarbonInterface::DIFF_ABSOLUTE,
            
'options' => CarbonInterface::NO_ZERO_DIFF,
            
'parts' => -1,
        ]);
    }

    
/**
     * Returns either the close date "Friday 15h30", or a calendar date "10/09/2017" is farthest than 7 days from now.
     *
     * @param Carbon|DateTimeInterface|string|null $referenceTime
     * @param array                                 $formats
     *
     * @return string
     */
    
public function calendar($referenceTime null, array $formats = [])
    {
        
/** @var CarbonInterface $current */
        
$current $this->copy()->startOfDay();
        
/** @var CarbonInterface $other */
        
$other $this->resolveCarbon($referenceTime)->copy()->setTimezone($this->getTimezone())->startOfDay();
        
$diff $other->diffInDays($currentfalse);
        
$format $diff < -'sameElse' : (
            
$diff < -'lastWeek' : (
                
$diff 'lastDay' : (
                    
$diff 'sameDay' : (
                        
$diff 'nextDay' : (
                            
$diff 'nextWeek' 'sameElse'
                        
)
                    )
                )
            )
        );
        
$format array_merge($this->getCalendarFormats(), $formats)[$format];
        if (
$format instanceof Closure) {
            
$format $format($current$other) ?? '';
        }

        return 
$this->isoFormat(strval($format));
    }
}
Онлайн: 0
Реклама