xref: /PHP-7.4/ext/date/tests/bug33452.phpt (revision bf23d8d2)
1--TEST--
2Bug #33452 (Support for year accompanying ISO week nr)
3--FILE--
4<?php
5date_default_timezone_set("GMT");
6echo date('Y-W', strtotime('2005-1-1')), "\n";
7echo date('o-W', strtotime('2005-1-1')), "\n";
8?>
9--EXPECT--
102005-53
112004-53
12