1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 17:38:14 +02:00

Merge branch 'PHP-7.0' into PHP-7.1

This commit is contained in:
Nikita Popov
2016-07-22 17:22:29 +02:00
+2 -2
View File
@@ -13,11 +13,11 @@ $now = IntlCalendar::getNow();
$proc_now = intlcal_get_now();
$time = time();
var_dump(abs($now - $proc_now) < 500);
var_dump(abs($time * 1000 - $proc_now) < 1000);
var_dump(abs($time * 1000 - $proc_now) < 2000);
?>
==DONE==
--EXPECT--
bool(true)
bool(true)
==DONE==
==DONE==