php-src/ext/intl/tests/timezone_getTZData_basic.phpt
2012-04-01 23:28:00 +01:00

19 lines
347 B
PHP

--TEST--
IntlTimeZone::getTZDataVersion: basic test
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);
print_R(IntlTimeZone::getTZDataVersion());
echo "\n";
print_R(intltz_get_tz_data_version());
echo "\n";
?>
==DONE==
--EXPECTF--
20%d%s
20%d%s
==DONE==