Is there a function in php wherein you can convert the number 12 to its equivalent in a month. For example if the mysql database stores digits and not words for dates. how do you convert the number 12 into the word december?

link|improve this question

69% accept rate
4  
This sounds a bit rudimentary since you could quickly and easily setup an array to index 12 values, so I'm guessing you have a bigger problem that you're trying to address. Care to elaborate a bit? – gurun8 May 5 '10 at 12:55
feedback

6 Answers

up vote 5 down vote accepted

You could do like:

echo date('F', mktime(0, 0, 0, 12));
link|improve this answer
-1 - OP is looking for month names – symcbean May 5 '10 at 12:56
@symcbean: I did not notice that but fixed before seeing your comment. Thanks – Sarfraz May 5 '10 at 12:57
The code will work fine, so long as the script is only ever executed in January. – salathe May 5 '10 at 13:47
@Sarfraz: foreach (range(1,12) as $num) echo date('F', strtotime($num)); gives JanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJanuaryJa‌​nuary – salathe May 5 '10 at 14:51
@salathe: hmm that's right, unfortunately i only gave try to digit 1, thanks for that, fixed now. – Sarfraz May 5 '10 at 14:55
show 2 more comments
feedback

Try this and look at the date function for more answers:

date('F', mktime(0, 0, 0, 12))
link|improve this answer
feedback
strftime("%B", mktime(0, 0, 0, 12));

It's like date() except it will take care of localization for you, if you set a locale using setlocale beforehand.

link|improve this answer
feedback

You could also do that directly in MySQL with

SELECT MONTHNAME(STR_TO_DATE(12, '%m')); -- December

See http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function_str-to-date

link|improve this answer
1  
Or in PHP-land (as of PHP 5.3) if for some reason doing it in MySQL isn't possible: DateTime::createFromFormat('n', $num)->format('F') – salathe May 5 '10 at 15:42
feedback
date("F", mktime(0, 0, 0, 12, 1, 2000));
link|improve this answer
feedback

Use this code:

echo date("F", mktime(0, 0, 0, $month, 1, 2010));

Where $month is your number from 1 to 12.

Read more at php functions reference: date

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.