1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 20:22:36 +02:00
Files
archived-php-src/ext/date/tests/bug43075.phpt
Derick Rethans 836e228265 - Sync tests.
2008-02-03 14:37:00 +00:00

12 lines
191 B
PHP

--TEST--
Bug #43075 (Support 24 as hour)
--INI--
date.timezone=UTC
--FILE--
<?php
$d = date_create("2007-11-01T24:34:00+00:00");
echo $d->format("c");
?>
--EXPECT--
2007-11-02T00:34:00+00:00