We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3a865 commit f6efd12Copy full SHA for f6efd12
ext/date/tests/createFromTimestamp.phpt
@@ -9,7 +9,8 @@ class MyDateTime extends DateTime {};
9
class MyDateTimeImmutable extends DateTimeImmutable {};
10
11
define('MAX_32BIT', 2147483647);
12
-define('MIN_32BIT', -2147483648);
+// -2147483648 may not be expressed in a literal due to parsing peculiarities.
13
+define('MIN_32BIT', -2147483647 - 1);
14
15
$timestamps = array(
16
1696883232,
0 commit comments