1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/date/tests/bug33536.phpt
2025-06-26 22:38:08 +02:00

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)