[PHP] Week numbers

2002-10-28 Thread Davíð Örn Jóhannsson
Lets say I have a date: 29.10.2002 and I want to be able to find out what week number it is, I know how to find out what the current week number is: date(“W”) to day it would result 44, but i need to be able to do this dynamically ofcourse, any Ideas? thanks, David

Re: [PHP] Week numbers

2002-10-28 Thread Chris Boget
Lets say I have a date: 29.10.2002 and I want to be able to find out what week number it is, I know how to find out what the current week number is: date(W) to day it would result 44, but i need to be able to do this dynamically ofcourse, any Ideas? date( W, $yourUnixTimeStampDateVar );

Re: [PHP] Week numbers

2002-10-28 Thread 1LT John W. Holmes
date('W',strtotime('29.10.2002')); ?? Untested... I don't know if strtotime will recognize that format. ---John Holmes... - Original Message - From: Davíð Örn Jóhannsson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 28, 2002 10:57 AM Subject: [PHP] Week numbers Lets

Re: [PHP] Week numbers

2002-10-28 Thread Justin French
The optional second parameter for date() is a timestamp. So, you convert whatever date you have (eg 29.10.2002) into a unix timestamp (probably using strtotime() or maybe you'll have to rearrange the string first), then supply it to the date() function. Justin on 29/10/02 1:57 AM, Davíð Örn