|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-08-24 07:45 UTC] gandon at isia dot cma dot fr
It would be nice is the php date() function could return the ISO-defined week of year. getdate() could also add that value (the ISO-defined week of year) associated to the 'yweek' key in the returned array. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 18:00:01 2025 UTC |
strftime already supports this: (from the manual notes): Week number: print strftime("%W");date("W") does this.