xref: /PHP-7.4/ext/date/tests/bug35705.phpt (revision 579e00d4)
1--TEST--
2Bug #35705 (strtotime() fails to parse soap date format without TZ)
3--FILE--
4<?php
5date_default_timezone_set("UTC");
6
7echo date(DATE_ISO8601, strtotime('2000-10-10T10:12:30.000')) . "\n";
8
9?>
10--EXPECT--
112000-10-10T10:12:30+0000
12