summaryrefslogtreecommitdiff
path: root/ext/intl/tests/dateformat_get_datetype.phpt
blob: ec03bb68f48927dc0b73762cf87cee878675bc3f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--TEST--
datefmt_get_datetype_code()
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php

/*
 * Test for the datefmt_get_datetype  function
 */


function ut_main()
{
	$datetype_arr = array (
		IntlDateFormatter::FULL,
		IntlDateFormatter::LONG,
		IntlDateFormatter::MEDIUM,
		IntlDateFormatter::SHORT,
		IntlDateFormatter::NONE
	);

	$res_str = '';

	foreach( $datetype_arr as $datetype_entry )
	{
		$res_str .= "\nCreating IntlDateFormatter with date_type = $datetype_entry";
		$fmt = ut_datefmt_create( "de-DE",  $datetype_entry , IntlDateFormatter::SHORT,'America/Los_Angeles', IntlDateFormatter::GREGORIAN  );
		$date_type = ut_datefmt_get_datetype( $fmt);
		$res_str .= "\nAfter call to get_datetype :  datetype= $date_type";
		$res_str .= "\n";
	}

	return $res_str;

}

include_once( 'ut_common.inc' );

// Run the test
ut_run();
?>
--EXPECT--
Creating IntlDateFormatter with date_type = 0
After call to get_datetype :  datetype= 0

Creating IntlDateFormatter with date_type = 1
After call to get_datetype :  datetype= 1

Creating IntlDateFormatter with date_type = 2
After call to get_datetype :  datetype= 2

Creating IntlDateFormatter with date_type = 3
After call to get_datetype :  datetype= 3

Creating IntlDateFormatter with date_type = -1
After call to get_datetype :  datetype= -1