summaryrefslogtreecommitdiff
path: root/ext/intl/tests/timezone_getTZData_basic.phpt
blob: dea5b7c4b30736f611b1e9a5e033e243521a690a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--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==