Файловый менеджер - Редактировать - /home/clickysoft/public_html/charliapp-v2.clickysoft.net/vendor/lcobucci/clock/src/SystemClock.php
Назад
<?php declare(strict_types=1); namespace Lcobucci\Clock; use DateTimeImmutable; use DateTimeZone; use function date_default_timezone_get; final class SystemClock implements Clock { public function __construct(private DateTimeZone $timezone) { } public static function fromUTC(): self { return new self(new DateTimeZone('UTC')); } public static function fromSystemTimezone(): self { return new self(new DateTimeZone(date_default_timezone_get())); } public function now(): DateTimeImmutable { return new DateTimeImmutable('now', $this->timezone); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка