You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
211 B

20 years ago
  1. --TEST--
  2. Bug #37747 (strtotime segfaults when given "nextyear")
  3. --FILE--
  4. <?php
  5. date_default_timezone_set("Europe/Oslo");
  6. var_dump(strtotime("nextyear"));
  7. echo "ALIVE\n";
  8. ?>
  9. --EXPECT--
  10. bool(false)
  11. ALIVE