summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug78383.phpt
blob: dc1b702fa7787e8c738b16f6bb45670b0203e173 (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
--TEST--
Bug #78383: Casting a DateTime to array no longer returns its properties
--FILE--
<?php

var_dump((array) new DateTime('2000-01-01 UTC'));
var_dump((array) new DateTimeZone('Europe/Berlin'));

?>
--EXPECT--
array(3) {
  ["date"]=>
  string(26) "2000-01-01 00:00:00.000000"
  ["timezone_type"]=>
  int(3)
  ["timezone"]=>
  string(3) "UTC"
}
array(2) {
  ["timezone_type"]=>
  int(3)
  ["timezone"]=>
  string(13) "Europe/Berlin"
}