xref: /PHP-5.5/ext/date/tests/010.phpt (revision b0159431)
1--TEST--
2timezone_abbreviations_list() tests
3--FILE--
4<?php
5date_default_timezone_set('UTC');
6  $timezone_abbreviations = timezone_abbreviations_list();
7  var_dump($timezone_abbreviations["utc"]);
8  echo "Done\n";
9?>
10--EXPECTF--
11array(7) {
12  [0]=>
13  array(3) {
14    ["dst"]=>
15    bool(false)
16    ["offset"]=>
17    int(0)
18    ["timezone_id"]=>
19    string(16) "Antarctica/Troll"
20  }
21  [1]=>
22  array(3) {
23    ["dst"]=>
24    bool(false)
25    ["offset"]=>
26    int(0)
27    ["timezone_id"]=>
28    string(13) "Etc/Universal"
29  }
30  [2]=>
31  array(3) {
32    ["dst"]=>
33    bool(false)
34    ["offset"]=>
35    int(0)
36    ["timezone_id"]=>
37    string(7) "Etc/UTC"
38  }
39  [3]=>
40  array(3) {
41    ["dst"]=>
42    bool(false)
43    ["offset"]=>
44    int(0)
45    ["timezone_id"]=>
46    string(8) "Etc/Zulu"
47  }
48  [4]=>
49  array(3) {
50    ["dst"]=>
51    bool(false)
52    ["offset"]=>
53    int(0)
54    ["timezone_id"]=>
55    string(3) "GMT"
56  }
57  [5]=>
58  array(3) {
59    ["dst"]=>
60    bool(false)
61    ["offset"]=>
62    int(0)
63    ["timezone_id"]=>
64    string(3) "UTC"
65  }
66  [6]=>
67  array(3) {
68    ["dst"]=>
69    bool(false)
70    ["offset"]=>
71    int(0)
72    ["timezone_id"]=>
73    string(3) "UTC"
74  }
75}
76Done
77