Util::formatDateTimeTimestamp

  1. Bitrix24 API (v. 23.675.0)
  2. calendar
  3. Util
  4. formatDateTimeTimestamp
  • Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/util.php
  • Класс: BitrixCalendarUtil
  • Вызов: Util::formatDateTimeTimestamp
static function formatDateTimeTimestamp(int $timestamp, string $timezoneName): string
{
	$timezone = new DateTimeZone($timezoneName);
	$dateTimeFormat = Date::convertFormatToPhp(FORMAT_DATETIME);

	return (new DateTime('now', $timezone))
		->setTimestamp($timestamp)
		->format($dateTimeFormat)
	;
}

Добавить комментарий