strtotime_basic2.phpt 245 B

12345678910111213
  1. --TEST--
  2. strtotime() with return false
  3. --CREDITS--
  4. "Anna Filina" <afilina@phpquebec.org>
  5. #PHPTestFest2009 2009-05-02
  6. --INI--
  7. date.timezone=UTC
  8. --FILE--
  9. <?php
  10. var_dump(strtotime('mayy 2 2009')); // misspelled month name
  11. ?>
  12. --EXPECT--
  13. bool(false)