...Человеческий поиск в разработке...
- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/classes/general/helper.php
- Класс: CBPHelper
- Вызов: CBPHelper::makeTimestamp
static function makeTimestamp($date) { if (!$date) { return 0; } //serialized date string if (is_string($date) && BizprocBaseTypeValueDateTime::isSerialized($date)) { $date = new BizprocBaseTypeValueDateTime($date); } if ($date instanceof BizprocBaseTypeValueDate) { return $date->getTimestamp(); } if ($date instanceof MainTypeDate) { return $date->getTimestamp(); } if (intval($date) . '!' === $date . '!') { return $date; } if (($result = MakeTimeStamp($date, FORMAT_DATETIME)) === false) { if (($result = MakeTimeStamp($date, FORMAT_DATE)) === false) { if (($result = MakeTimeStamp($date, 'YYYY-MM-DD HH:MI:SS')) === false) { $result = MakeTimeStamp($date, 'YYYY-MM-DD'); } } } return (int) $result; }