mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
11 lines
286 B
PHP
11 lines
286 B
PHP
--TEST--
|
|
Bug #66019 (DateTime object does not support short ISO 8601 time format - YYYY-MM-DDTHH)
|
|
--FILE--
|
|
<?php
|
|
$tz = new DateTimeZone("Europe/Amsterdam");
|
|
$dateObject = new DateTime( '2012-02-02T10', $tz );
|
|
echo $dateObject->format( 'j F Y H:i' );
|
|
?>
|
|
--EXPECT--
|
|
2 February 2012 10:00
|