Define the lowest possible datetime string as "0001-01-01 00:00:00"
This commit is contained in:
parent
8986edf070
commit
06b16cce8b
1 changed files with 6 additions and 0 deletions
|
@ -95,6 +95,12 @@ class dbm {
|
||||||
*/
|
*/
|
||||||
public static function date($date = 'now') {
|
public static function date($date = 'now') {
|
||||||
$timestamp = strtotime($date);
|
$timestamp = strtotime($date);
|
||||||
|
|
||||||
|
// Don't allow lower date strings as '0001-01-01 00:00:00'
|
||||||
|
if ($timestamp < -62135596800) {
|
||||||
|
$timestamp = -62135596800;
|
||||||
|
}
|
||||||
|
|
||||||
return date('Y-m-d H:i:s', $timestamp);
|
return date('Y-m-d H:i:s', $timestamp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue