mirror of
https://github.com/php/php-src.git
synced 2024-12-11 19:04:38 +08:00
12 lines
211 B
PHP
12 lines
211 B
PHP
--TEST--
|
|
Bug #37747 (strtotime segfaults when given "nextyear")
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("Europe/Oslo");
|
|
var_dump(strtotime("nextyear"));
|
|
echo "ALIVE\n";
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
ALIVE
|