mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
13 lines
244 B
PHP
13 lines
244 B
PHP
--TEST--
|
|
strtotime() with return false
|
|
--CREDITS--
|
|
"Anna Filina" <afilina@phpquebec.org>
|
|
#PHPTestFest2009 2009-05-02
|
|
--INI--
|
|
date.timezone=UTC
|
|
--FILE--
|
|
<?php
|
|
var_dump(strtotime('mayy 2 2009')); // misspelled month name
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|