date_default_timezone_get

Supported Versions: PHP 5 >= 5.1.0, PHP 7, PHP 8
Gets the default timezone used by all date/time functions in a script
<?php date_default_timezone_get(): string
<?php             (int) $batch->failed_jobs,

            (array) json_decode($batch->failed_job_ids, true),

            $this->unserialize($batch->options),

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );
<?php             (array) json_decode($batch->failed_job_ids, true),

            $this->unserialize($batch->options),

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );

    }
<?php             $this->unserialize($batch->options),

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );

    }
<?php             (int) $batch->failed_jobs,

            $batch->failed_job_ids,

            $this->unserialize($batch->options) ?? [],

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );
<?php             $batch->failed_job_ids,

            $this->unserialize($batch->options) ?? [],

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );

    }
<?php             $this->unserialize($batch->options) ?? [],

            CarbonImmutable::createFromTimestamp($batch->created_at, date_default_timezone_get()),

            $batch->cancelled_at ? CarbonImmutable::createFromTimestamp($batch->cancelled_at, date_default_timezone_get()) : $batch->cancelled_at,

            $batch->finished_at ? CarbonImmutable::createFromTimestamp($batch->finished_at, date_default_timezone_get()) : $batch->finished_at

        );

    }
<?php         if (is_numeric($value)) {

            return Date::createFromTimestamp($value, date_default_timezone_get());

        }
<?php         if (isset($options['last_modified'])) {

            if (is_numeric($options['last_modified'])) {

                $options['last_modified'] = Carbon::createFromTimestamp($options['last_modified'], date_default_timezone_get());

            } else {

                $options['last_modified'] = Carbon::parse($options['last_modified']);

            }
<?php                 'payload' => $result['payload']['S'],

                'exception' => $result['exception']['S'],

                'failed_at' => Carbon::createFromTimestamp(

                    (int) $result['failed_at']['N'], date_default_timezone_get()

                )->format(DateTimeInterface::ISO8601),

            ];

        })->all();
<?php             'payload' => $result['Item']['payload']['S'],

            'exception' => $result['Item']['exception']['S'],

            'failed_at' => Carbon::createFromTimestamp(

                (int) $result['Item']['failed_at']['N'], date_default_timezone_get()

            )->format(DateTimeInterface::ISO8601),

        ];

    }
<?php     public static function until($timestamp)

    {

        if (is_numeric($timestamp)) {

            $timestamp = Carbon::createFromTimestamp($timestamp, date_default_timezone_get());

        }



        return new static(Carbon::now()->diff($timestamp));
<?php             "Cookie [{$cookieName}] not present on response."

        );



        $expiresAt = Carbon::createFromTimestamp($cookie->getExpiresTime(), date_default_timezone_get());



        PHPUnit::assertTrue(

            $cookie->getExpiresTime() !== 0 && $expiresAt->lessThan(Carbon::now()),
<?php             "Cookie [{$cookieName}] not present on response."

        );



        $expiresAt = Carbon::createFromTimestamp($cookie->getExpiresTime(), date_default_timezone_get());



        PHPUnit::assertTrue(

            $cookie->getExpiresTime() === 0 || $expiresAt->greaterThan(Carbon::now()),
<?php     protected function setUp(): void

    {

        $this->defaultTimezone = date_default_timezone_get();

        date_default_timezone_set('UTC');

    }
<?php     protected function setUp(): void

    {

        $this->platform        = $this->getMockForAbstractClass(AbstractPlatform::class);

        $this->currentTimezone = date_default_timezone_get();



        self::assertInstanceOf(Type::class, $this->type);

    }