From: frozenfire at thefrozenfire dot com Operating system: Windows XP SP2 PHP version: 5.2.6 PHP Bug Type: Date/time related Bug description: Error in mktime when omitting day
Description: ------------ There is a bug in mktime, where omission of the day parameter causes some issues. Most notably, when attempting to iterate through months. See the reproduction code for a better explanation. Reproduce code: --------------- // Bugged code. Produces "Mar" twice. for($i=1; $i<13; $i++) echo date('M', mktime(0, 0, 0, $i))."\n"; // Working code. Produces intuitive output. for($i=1; $i<13; $i++) echo date('M', mktime(0, 0, 0, $i, 0))."\n"; Expected result: ---------------- Jan Feb Mar Apr Jun Jul Aug Sep Oct Nov Dec Actual result: -------------- Jan Mar Mar Apr Jun Jul Aug Sep Oct Nov Dec -- Edit bug report at http://bugs.php.net/?id=45661&edit=1 -- Try a CVS snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=45661&r=trysnapshot52 Try a CVS snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=45661&r=trysnapshot53 Try a CVS snapshot (PHP 6.0): http://bugs.php.net/fix.php?id=45661&r=trysnapshot60 Fixed in CVS: http://bugs.php.net/fix.php?id=45661&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=45661&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=45661&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=45661&r=needscript Try newer version: http://bugs.php.net/fix.php?id=45661&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=45661&r=support Expected behavior: http://bugs.php.net/fix.php?id=45661&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=45661&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=45661&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=45661&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=45661&r=php4 Daylight Savings: http://bugs.php.net/fix.php?id=45661&r=dst IIS Stability: http://bugs.php.net/fix.php?id=45661&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=45661&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=45661&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=45661&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=45661&r=mysqlcfg