mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
- Fixed bug #43808 (date_create never fails (even when it should)). - Fixed bug #43527 (DateTime created from a timestamp reports environment timezone). - Fixed bug #43003 (Invalid timezone reported for DateTime objects constructed using a timestamp). - Fixed bug #42190 (Constructing DateTime with TimeZone Indicator invalidates DateTimeZone). - Fixed bug #41599 (setTime() fails after modify() is used).
15 lines
237 B
PHP
15 lines
237 B
PHP
--TEST--
|
|
Bug #43808 (date_create never fails (even when it should))
|
|
--FILE--
|
|
<?php
|
|
$date = date_create('asdfasdf');
|
|
|
|
if ($date instanceof DateTime) {
|
|
echo "this is wrong, should be bool";
|
|
}
|
|
|
|
var_dump( $date );
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|