format($format); } elseif (empty($date)) { return null; } elseif ($date === true) { $date = (new \DateTime())->getTimestamp(); } elseif (!is_numeric($date)) { $date = (new \DateTime($date))->getTimestamp(); } $format = $includeTime ? self::DATETIME_PHP_FORMAT : self::DATE_PHP_FORMAT; return (new \DateTime())->setTimestamp($date)->format($format); } /** * Check whether sql date is empty * * @param string $date * @return boolean */ public function isEmptyDate($date) { return preg_replace('#[ 0:-]#', '', $date) === ''; } /** * Wrapper for native gmdate function * * @param string $format * @param int $time * @return string The given time in given format * * @deprecated 101.0.1 * @see Use Intl library for datetime handling: http://php.net/manual/en/book.intl.php * * @codeCoverageIgnore */ public function gmDate($format, $time) { return gmdate($format, $time); } /** * Wrapper for native strtotime function * * @param string $timeStr * @return int * * @deprecated 101.0.1 * @see Use Intl library for datetime handling: http://php.net/manual/en/book.intl.php * * @codeCoverageIgnore */ public function strToTime($timeStr) { return strtotime($timeStr); } }