summaryrefslogtreecommitdiff
path: root/ext/date/tests/format-negative-timestamp.phpt
blob: d8268ddc68040c223a76358e7fc2c78dcbd82a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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!