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