Re: [PHP] Week of month

2001-11-01 Thread Jon Farmer

Well seeing as Monday of this week was the 29th of October is this week the
first of November or the last of October? I think the United Nations set out
a specification for determining the week number of the year but not sure if
they have a spec for the week of the month.

Regards

Jon

--
Jon Farmer
Systems Programmer, Entanet www.enta.net
Tel 01952 428969 Mob 07763 620378
PGP Key available, send blank email to [EMAIL PROTECTED]


- Original Message -
From: "Andrew Braund" <[EMAIL PROTECTED]>
To: "PHP Masters" <[EMAIL PROTECTED]>
Sent: Thursday, November 01, 2001 9:57 AM
Subject: RE: [PHP] Week of month


> How about;
> echo "It is week ".((int)(date("j")/7)+1)." of the month.";
>
> > -Original Message-
> > From: Jon Farmer [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, 1 November 2001 20:14
> > To: PHP Masters; Sheni R. Meledath
> > Subject: Re: [PHP] Week of month
> >
> >
> > > Is there any way to find out the week of the month. Today is in the
first
> > > week of month.
> > >
> > > That is, a function like weekofmonth() which displays 1 today & 2 next
> > week.
> >
> > No builtin function in PHP. You will need to search to see if some kind
and
> > generous soul has published their code for this purpose or write your
own.
> > Remember the actual first day of a week can be country specific.
> >
> > Regards
> >
> > Jon
> >
> >
> > --
> > Jon Farmer
> > Systems Programmer, Entanet www.enta.net
> > Tel 01952 428969 Mob 07763 620378
> > PGP Key available, send blank email to [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Week of month

2001-11-01 Thread Matt Williams

Please find attached a very good date class.

I can't remeber where I got it from and who wrote it but it's pretty good.

M:

> --
> > Is there any way to find out the week of the month. Today is in
> the first
> > week of month.
> >
> > That is, a function like weekofmonth() which displays 1 today & 2 next
> week.
>
> No builtin function in PHP. You will need to search to see if
> some kind and
> generous soul has published their code for this purpose or write your own.
> Remember the actual first day of a week can be country specific.
>
>

 Date_Calc-1.2.4.tar.gz

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


RE: [PHP] Week of month

2001-11-01 Thread Andrew Braund

How about;
echo "It is week ".((int)(date("j")/7)+1)." of the month.";

> -Original Message-
> From: Jon Farmer [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, 1 November 2001 20:14
> To: PHP Masters; Sheni R. Meledath
> Subject: Re: [PHP] Week of month
> 
> 
> > Is there any way to find out the week of the month. Today is in the first
> > week of month.
> >
> > That is, a function like weekofmonth() which displays 1 today & 2 next
> week.
> 
> No builtin function in PHP. You will need to search to see if some kind and
> generous soul has published their code for this purpose or write your own.
> Remember the actual first day of a week can be country specific.
> 
> Regards
> 
> Jon
> 
> 
> --
> Jon Farmer
> Systems Programmer, Entanet www.enta.net
> Tel 01952 428969 Mob 07763 620378
> PGP Key available, send blank email to [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Week of month

2001-11-01 Thread Jon Farmer

> Is there any way to find out the week of the month. Today is in the first
> week of month.
>
> That is, a function like weekofmonth() which displays 1 today & 2 next
week.

No builtin function in PHP. You will need to search to see if some kind and
generous soul has published their code for this purpose or write your own.
Remember the actual first day of a week can be country specific.

Regards

Jon


--
Jon Farmer
Systems Programmer, Entanet www.enta.net
Tel 01952 428969 Mob 07763 620378
PGP Key available, send blank email to [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]