• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/integration/view/base.php
  • Класс: BitrixRestIntegrationViewBase
  • Вызов: Base::internalizeDate
protected function internalizeDate($value)
{
	if($value === '')
	{
		$date = '';
	}
	else
	{
		$time = strtotime($value);
		$date = ($time) ? BitrixMainTypeDate::createFromTimestamp($time):'';
	}
	return $date;
}