Deprecate DBM::date()
This commit is contained in:
parent
143b453c17
commit
7333296b8d
1 changed files with 2 additions and 8 deletions
|
@ -114,19 +114,13 @@ class DBM
|
||||||
/**
|
/**
|
||||||
* Checks Converts any date string into a SQL compatible date string
|
* Checks Converts any date string into a SQL compatible date string
|
||||||
*
|
*
|
||||||
|
* @deprecated since version 3.6
|
||||||
* @param string $date a date string in any format
|
* @param string $date a date string in any format
|
||||||
*
|
*
|
||||||
* @return string SQL style date string
|
* @return string SQL style date string
|
||||||
*/
|
*/
|
||||||
public static function date($date = 'now')
|
public static function date($date = 'now')
|
||||||
{
|
{
|
||||||
$timestamp = strtotime($date);
|
return DateTimeFormat::utc($date);
|
||||||
|
|
||||||
// Don't allow lower date strings as '0001-01-01 00:00:00'
|
|
||||||
if ($timestamp < -62135596800) {
|
|
||||||
$timestamp = -62135596800;
|
|
||||||
}
|
|
||||||
|
|
||||||
return date(DateTimeFormat::MYSQL, (int)$timestamp);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue