-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/date/tests/
File Upload :
Current File : //usr/src/php/ext/date/tests/bug52063.phpt

--TEST--
Bug #52063 (DateTime constructor's second argument doesn't have a null default value)
--FILE--
<?php
date_default_timezone_set("Europe/Lisbon");
$a = new DateTime("2009-01-01", null);
echo $a->format(DateTime::COOKIE);
echo "\n";
$a = date_create("2009-01-01", null);
echo $a->format(DateTime::COOKIE);
echo "\n";
?>
--EXPECTF--
Thursday, 01-Jan-09 00:00:00 WET
Thursday, 01-Jan-09 00:00:00 WET

Copyright © 2017 || Recoded By Mr.Bumblebee