• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar.php
  • Класс: CCalendar
  • Вызов: CCalendar::Timestamp
static function Timestamp($date, $bRound = true, $bTime = true)
{
	$timestamp = MakeTimeStamp($date, self::TSFormat($bTime ? "FULL" : "SHORT"));
	if ($bRound)
	{
		$timestamp = self::RoundTimestamp($timestamp);
	}

	return $timestamp;
}