summaryrefslogtreecommitdiff
path: root/ext/date/tests/format-negative-timestamp.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/format-negative-timestamp.phpt')
-rw-r--r--ext/date/tests/format-negative-timestamp.phpt24
1 files changed, 24 insertions, 0 deletions
diff --git a/ext/date/tests/format-negative-timestamp.phpt b/ext/date/tests/format-negative-timestamp.phpt
new file mode 100644
index 0000000..5fd6a65
--- /dev/null
+++ b/ext/date/tests/format-negative-timestamp.phpt
@@ -0,0 +1,24 @@
+--TEST--
+strtotime() - Format: @timestamps
+--FILE--
+<?php
+date_default_timezone_set("GMT");
+
+$i = 5;
+$max = getrandmax();
+$max_2 = $max / 2;
+
+while($i--) {
+ $new_tm = rand(1, $max);
+ if ($new_tm > $max_2)
+ $new_tm *= -1;
+
+ if (strtotime("@$new_tm") != $new_tm) {
+ echo "Error when parsing: @$new_tm\n";
+ }
+}
+
+echo "done!";
+?>
+--EXPECT--
+done!