From:             sandved at gmail dot com
Operating system: all
PHP version:      5.0.4
PHP Bug Type:     Date/time related
Bug description:  Date('W') do not return leading zeros for week 1 to 9 (as 
specified in ISO)

Description:
------------
The Date function have an ISO compilant Week parameter 'W'

This parameter should return leading zeros for week 1 to 9 (always
returning 2 digits). 

Why

http://se.php.net/date :
> W   ISO-8601 week number of year, weeks starting on Monday 
> (added in PHP 4.1.0)

This week parameter do not return leading zeros when used like Date('W'),
Date('o\WW') etc. for the weeks 1 to 9

According to ISO 8601 weeks should be represented with leading zeros (from
section 4.8 Leading zeros
Each date and time component in a defined representation has a defined
length, and leading zeros shall be used as
required.) like:

Date       - Week (extended format)
---------- - ----------
1997-12-29 - 1998-W01-1
1998-01-04 - 1998-W01-7
1998-01-01 - 1998-W01-4
1998-12-31 - 1998-W53-4
1992-01-01 - 1992-W01-3 
1992-02-29 - 1992-W09-6
1992-12-31 - 1992-W53-4
1975-01-01 - 1975-W01-3 
1975-12-28 - 1975-W52-7 
1975-12-29 - 1976-W01-1 


Sources
Here's a copy of the latest free online copy
http://www.pvv.org/~nsaa/8601v2000.pdf, only minor changes in the text in
the latest version from ISO - also see
http://en.wikipedia.org/wiki/ISO_8601.





Reproduce code:
---------------
ECHO date('W',strtotime('4 January 1999'));

Expected result:
----------------
01

Actual result:
--------------
1

-- 
Edit bug report at http://bugs.php.net/?id=34302&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=34302&r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=34302&r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=34302&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=34302&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=34302&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=34302&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=34302&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=34302&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=34302&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=34302&r=notwrong
Not enough info:             
http://bugs.php.net/fix.php?id=34302&r=notenoughinfo
Submitted twice:             
http://bugs.php.net/fix.php?id=34302&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=34302&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=34302&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=34302&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=34302&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=34302&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=34302&r=float
No Zend Extensions:          http://bugs.php.net/fix.php?id=34302&r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=34302&r=mysqlcfg

Reply via email to