RE: month

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



use an array

$months = array('01'=>'January','02'=>'February'...);

$thisMonths = array_flip($months);
$month = $thisMonths['January'];

echo $month;

though its easier to just create the array the other way and the just reference it

$months = array(''January''=>'01','February'=>'02...');

$month = $months[January'];



Bastien

From: "Ron Piggott (PHP)" <ron.php@xxxxxxxxxxxxxxxxxx>
Reply-To: ron.php@xxxxxxxxxxxxxxxxxx
To: PHP DB <php-db@xxxxxxxxxxxxx>
Subject:  month
Date: Sun, 15 Oct 2006 22:50:48 -0400

Is there a slick and easy way to convert January to 01 ? (and February
to 02, etc)  Ron

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux