* PHP-7.3:
Fix #80185: jdtounix() fails after 2037
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? ????, PHP 7.3.24
+?? ??? 2020, PHP 7.4.12
- Core:
+ . Fixed bug #80061 (Copying large files may have suboptimal performance).
+ (cmb)
. Fixed bug #79423 (copy command is limited to size of file it can copy).
(cmb)
+ . Fixed bug #80126 (Covariant return types failing compilation). (Nikita)
+ - Calendar:
+ . Fixed bug #80185 (jdtounix() fails after 2037). (cmb)
+
- MySQLnd:
. Fixed bug #80115 (mysqlnd.debug doesn't recognize absolute paths with
slashes). (cmb)
RETURN_FALSE;
}
- RETURN_LONG(uday * 24 * 3600);
+ RETURN_LONG(uday * SECS_PER_DAY);
}
/* }}} */
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: sw=4 ts=4 fdm=marker
- * vim<600: sw=4 ts=4
- */