Converting Month to Num

Jeff Jungblut jeff at soapzone.com
Thu Mar 22 12:36:14 CST 2001


~sdpm~
on 3/21/01 4:45 PM, Vasquez, Mike at mike.vasquez at akamai.com wrote:

> Is there a simplier way of converting a Month that has a txt value, i.e.
> $month = "April" and converting that to $month = 4 instead of writing a long
> if statement.
> 
> I have a drop down menu that has the value of the month and I'm passing that
> to another cgi page via post and I want to convert $q->param('month') over
> to 4.

Here's another solution that requires less code than building a hash.  Take
the first three letters of the month in $q->param('month'), find its
position in a string of months, then divide the result by 3 and you'll have
the month number.

$monthNum = index("???JanFebMarAprMayJunJulAugSepOctNovDec",
substr($q->param('month'), 0, 3)) / 3;

-- 
Jeff Jungblut
jeff at soapzone.com
http://soapzone.com/

~sdpm~

The posting address is: san-diego-pm-list at hfb.pm.org

List requests should be sent to: majordomo at hfb.pm.org

If you ever want to remove yourself from this mailing list,
you can send mail to <majordomo at happyfunball.pm.org> with the following
command in the body of your email message:

    unsubscribe san-diego-pm-list

If you ever need to get in contact with the owner of the list,
(if you have trouble unsubscribing, or have questions about the
list itself) send email to <owner-san-diego-pm-list at happyfunball.pm.org> .
This is the general rule for most mailing lists when you need
to contact a human.




More information about the San-Diego-pm mailing list