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/bug38229.phpt

14 lines
278 B
PHP

--TEST--
Bug #38229 (strtotime() does not parse YYYY-MM)
--FILE--
<?php
date_default_timezone_set("GMT");
echo date("Y-m", strtotime('2006-1'))."\n";
echo date("Y-m", strtotime('2006-03'))."\n";
echo date("Y-m", strtotime('2006-12'))."\n";
?>
--EXPECT--
2006-01
2006-03
2006-12