mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
10 lines
178 B
PHP
10 lines
178 B
PHP
--TEST--
|
|
Bug #33456 (strtotime defaults to now even on non time string)
|
|
--FILE--
|
|
<?php
|
|
date_default_timezone_set("GMT");
|
|
var_dump(strtotime("monkey"));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|