File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 6
6
. Fixed bug GH-8575 (CLI closes standard streams too early). (Levi Morrison)
7
7
8
8
- Date:
9
+ . Fixed bug #51934 (strtotime plurals / incorrect time). (Derick)
9
10
. Fixed bug #66019 (DateTime object does not support short ISO 8601 time
10
11
format - YYYY-MM-DDTHH) (cmb, Derick)
11
12
. Fixed bug #68549 (Timezones and offsets are not properly used when working
Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ Bug #51934 (strtotime plurals / incorrect time)
3
+ --FILE--
4
+ <?php
5
+ date_default_timezone_set ('America/Los_Angeles ' );
6
+
7
+ echo date ("Y-m-d H:i:s " , strtotime ("2010-05-27 19:18 4 Sunday ago " )), "\n" ;
8
+ echo date ("Y-m-d H:i:s " , strtotime ("2010-05-27 19:18 4 Sundays ago " )), "\n" ;
9
+ ?>
10
+ --EXPECTF--
11
+ 2010-05-02 19:18:00
12
+ 2010-05-02 19:18:00
You can’t perform that action at this time.
0 commit comments