This is a discussion on Coverting week number to date within the PHP Language forums, part of the PHP Programming Forums category; Hi, How would I convert a week number and year into a date? Thanks!...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
JamesG wrote:
> Hi, > > How would I convert a week number and year into a date? > > Thanks! > echo date("d m Y", strtotime("1.1.2007 + 30 weeks")); -- gosha bine extended php parser ~ http://code.google.com/p/pihipi blok ~ http://www.tagarga.com/blok |
|
|||
|
On Aug 7, 9:15 pm, gosha bine <stereof...@gmail.com> wrote:
> JamesG wrote: > > Hi, > > > How would I convert a week number and year into a date? > > > Thanks! > > echo date("d m Y", strtotime("1.1.2007 + 30 weeks")); > > -- > gosha bine > > extended php parser ~http://code.google.com/p/pihipi > blok ~http://www.tagarga.com/blok Perfect, thanks! |