mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
19 lines
359 B
PHP
19 lines
359 B
PHP
--TEST--
|
|
IntlCalendar::getNow() basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
ini_set("intl.default_locale", "nl");
|
|
|
|
$now = IntlCalendar::getNow();
|
|
$proc_now = intlcal_get_now();
|
|
$time = time();
|
|
var_dump(abs($now - $proc_now) < 500);
|
|
var_dump(abs($time * 1000 - $proc_now) < 2000);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|